blob: 9edc602cff6c56936cdf50dbc415eedf870682ed [file] [log] [blame]
Siva Chandra Reddyb2a294b2022-10-17 16:27:451//===-- Implementation header for tcsendbreak -------------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
Guillaume Chatelet270547f2023-09-21 09:14:479#ifndef LLVM_LIBC_SRC_TERMIOS_TCSENDBREAK_H
10#define LLVM_LIBC_SRC_TERMIOS_TCSENDBREAK_H
Siva Chandra Reddyb2a294b2022-10-17 16:27:4511
Petr Hosek5ff3ff32024-07-12 16:28:4112#include "src/__support/macros/config.h"
Siva Chandra Reddyb2a294b2022-10-17 16:27:4513#include <termios.h>
14
Petr Hosek5ff3ff32024-07-12 16:28:4115namespace LIBC_NAMESPACE_DECL {
Siva Chandra Reddyb2a294b2022-10-17 16:27:4516
17int tcsendbreak(int fd, int duration);
18
Petr Hosek5ff3ff32024-07-12 16:28:4119} // namespace LIBC_NAMESPACE_DECL
Siva Chandra Reddyb2a294b2022-10-17 16:27:4520
Guillaume Chatelet270547f2023-09-21 09:14:4721#endif // LLVM_LIBC_SRC_TERMIOS_TCSENDBREAK_H