1 /* Substitute for and wrapper around <termios.h>.
2 Copyright (C) 2010-2024 Free Software Foundation, Inc.
4 This file is free software: you can redistribute it and/or modify
5 it under the terms of the GNU Lesser General Public License as
6 published by the Free Software Foundation; either version 2.1 of the
7 License, or (at your option) any later version.
9 This file is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public License
15 along with this program. If not, see <https://www.gnu.org/licenses/>. */
17 #ifndef _@GUARD_PREFIX@_TERMIOS_H
20 @PRAGMA_SYSTEM_HEADER@
24 /* On HP-UX 11.00, some of the function declarations in <sys/termio.h>,
25 included by <termios.h>, are not protected by extern "C". Enforce
26 "C" linkage for these functions nevertheless. */
27 #if defined __hpux && defined __cplusplus
28 # include <sys/types.h>
29 # include <sys/ioctl.h>
31 # include <sys/termio.h>
35 /* The include_next requires a split double-inclusion guard. */
37 # @INCLUDE_NEXT@ @NEXT_TERMIOS_H@
40 #ifndef _@GUARD_PREFIX@_TERMIOS_H
41 #define _@GUARD_PREFIX@_TERMIOS_H
43 /* This file uses GNULIB_POSIXCHECK, HAVE_RAW_DECL_*. */
44 #if !_GL_CONFIG_H_INCLUDED
45 #error "Please include config.h first."
49 #include <sys/types.h>
51 #if ! @TERMIOS_H_DEFINES_STRUCT_WINSIZE@
53 # if @SYS_IOCTL_H_DEFINES_STRUCT_WINSIZE@
54 # include <sys/ioctl.h>
57 # if !GNULIB_defined_struct_winsize
60 unsigned short ws_row
;
61 unsigned short ws_col
;
63 # define GNULIB_defined_struct_winsize 1
68 /* The definitions of _GL_FUNCDECL_RPL etc. are copied here. */
70 /* The definition of _GL_WARN_ON_USE is copied here. */
73 /* Declare overridden functions. */
76 /* Return the session ID of the controlling terminal of the current process.
77 The argument is a descriptor if this controlling terminal.
78 Return -1, with errno set, upon failure. errno = ENOSYS means that the
79 function is unsupported. */
80 # if !@HAVE_DECL_TCGETSID@
81 _GL_FUNCDECL_SYS (tcgetsid
, pid_t
, (int fd
), );
83 _GL_CXXALIAS_SYS (tcgetsid
, pid_t
, (int fd
));
84 _GL_CXXALIASWARN (tcgetsid
);
85 #elif defined GNULIB_POSIXCHECK
87 # if HAVE_RAW_DECL_TCGETSID
88 _GL_WARN_ON_USE (tcgetsid
, "tcgetsid is not portable - "
89 "use gnulib module tcgetsid for portability");
94 #endif /* _@GUARD_PREFIX@_TERMIOS_H */
95 #endif /* _@GUARD_PREFIX@_TERMIOS_H */