Avoid line length limitation from HP NonStop system header files.
[gnulib.git] / lib / sys_utsname.in.h
1 /* Substitute for <sys/utsname.h>.
2    Copyright (C) 2009, 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_SYS_UTSNAME_H
19
20 #if __GNUC__ >= 3
21 @PRAGMA_SYSTEM_HEADER@
22 #endif
23 @PRAGMA_COLUMNS@
24
25 #if @HAVE_SYS_UTSNAME_H@
26 # @INCLUDE_NEXT@ @NEXT_SYS_UTSNAME_H@
27 #endif
28
29 #define _GL_SYS_UTSNAME_H
30
31 /* The definition of _GL_ARG_NONNULL is copied here.  */
32
33 /* The definition of _GL_WARN_ON_USE is copied here.  */
34
35
36 #ifdef __cplusplus
37 extern "C" {
38 #endif
39
40 #if !@HAVE_STRUCT_UTSNAME@
41 /* Length of the entries in 'struct utsname' is 256.  */
42 # define _UTSNAME_LENGTH 256
43
44 # ifndef _UTSNAME_NODENAME_LENGTH
45 #  define _UTSNAME_NODENAME_LENGTH _UTSNAME_LENGTH
46 # endif
47 # ifndef _UTSNAME_SYSNAME_LENGTH
48 #  define _UTSNAME_SYSNAME_LENGTH _UTSNAME_LENGTH
49 # endif
50 # ifndef _UTSNAME_RELEASE_LENGTH
51 #  define _UTSNAME_RELEASE_LENGTH _UTSNAME_LENGTH
52 # endif
53 # ifndef _UTSNAME_VERSION_LENGTH
54 #  define _UTSNAME_VERSION_LENGTH _UTSNAME_LENGTH
55 # endif
56 # ifndef _UTSNAME_MACHINE_LENGTH
57 #  define _UTSNAME_MACHINE_LENGTH _UTSNAME_LENGTH
58 # endif
59
60 /* Structure describing the system and machine.  */
61 struct utsname
62   {
63     /* Name of this node on the network.  */
64     char nodename[_UTSNAME_NODENAME_LENGTH];
65
66     /* Name of the implementation of the operating system.  */
67     char sysname[_UTSNAME_SYSNAME_LENGTH];
68     /* Current release level of this implementation.  */
69     char release[_UTSNAME_RELEASE_LENGTH];
70     /* Current version level of this release.  */
71     char version[_UTSNAME_VERSION_LENGTH];
72
73     /* Name of the hardware type the system is running on.  */
74     char machine[_UTSNAME_MACHINE_LENGTH];
75   };
76 #endif /* !@HAVE_STRUCT_UTSNAME@ */
77
78
79 #if @GNULIB_UNAME@
80 # if !@HAVE_UNAME@
81 extern int uname (struct utsname *buf) _GL_ARG_NONNULL ((1));
82 # endif
83 #elif defined GNULIB_POSIXCHECK
84 # undef uname
85 # if HAVE_RAW_DECL_UNAME
86 _GL_WARN_ON_USE (uname, "uname is unportable - "
87                  "use gnulib module uname for portability");
88 # endif
89 #endif
90
91
92 #ifdef __cplusplus
93 }
94 #endif
95
96
97 #endif /* _GL_SYS_UTSNAME_H */