tcgetsid: Add missing declaration on OSF/1 5.1.
[gnulib.git] / lib / termios.in.h
1 /* Substitute for and wrapper around <termios.h>.
2    Copyright (C) 2010 Free Software Foundation, Inc.
3
4    This program is free software; you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 2, or (at your option)
7    any later version.
8
9    This program 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 General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program; if not, write to the Free Software Foundation,
16    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
17
18 #ifndef _GL_TERMIOS_H
19
20 #if __GNUC__ >= 3
21 @PRAGMA_SYSTEM_HEADER@
22 #endif
23 @PRAGMA_COLUMNS@
24
25 /* The include_next requires a split double-inclusion guard.  */
26 #if @HAVE_TERMIOS_H@
27 # @INCLUDE_NEXT@ @NEXT_TERMIOS_H@
28 #endif
29
30 #ifndef _GL_TERMIOS_H
31 #define _GL_TERMIOS_H
32
33 #if @GNULIB_TCGETSID@
34 /* Get pid_t.  */
35 # include <sys/types.h>
36 #endif
37
38 /* The definitions of _GL_FUNCDECL_RPL etc. are copied here.  */
39
40 /* The definition of _GL_WARN_ON_USE is copied here.  */
41
42
43 /* Declare overridden functions.  */
44
45 #if @GNULIB_TCGETSID@
46 /* Return the session ID of the controlling terminal of the current process.
47    The argument is a descriptor if this controlling terminal.
48    Return -1, with errno set, upon failure.  errno = ENOSYS means that the
49    function is unsupported.  */
50 # if !@HAVE_DECL_TCGETSID@
51 _GL_FUNCDECL_SYS (tcgetsid, pid_t, (int fd));
52 # endif
53 _GL_CXXALIAS_SYS (tcgetsid, pid_t, (int fd));
54 _GL_CXXALIASWARN (tcgetsid);
55 #elif defined GNULIB_POSIXCHECK
56 # undef tcgetsid
57 # if HAVE_RAW_DECL_TCGETSID
58 _GL_WARN_ON_USE (tcgetsid, "tcgetsid is not portable - "
59                  "use gnulib module tcgetsid for portability");
60 # endif
61 #endif
62
63
64 #endif /* _GL_TERMIOS_H */
65 #endif /* _GL_TERMIOS_H */