fix misplaced indention in sys/procfs.h
[musl.git] / include / sys / utsname.h
blob6b9ea970970dff0571d88111b58c5ecea86d8d12
1 #ifndef _SYS_UTSNAME_H
2 #define _SYS_UTSNAME_H
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
8 #include <features.h>
10 struct utsname
12 char sysname[65];
13 char nodename[65];
14 char release[65];
15 char version[65];
16 char machine[65];
17 #ifdef _GNU_SOURCE
18 char domainname[65];
19 #else
20 char __domainname[65];
21 #endif
24 int uname (struct utsname *);
26 #ifdef __cplusplus
28 #endif
30 #endif