2011-02-12 00:22:29 -05:00
|
|
|
#ifndef _SYS_UTSNAME_H
|
|
|
|
#define _SYS_UTSNAME_H
|
|
|
|
|
2011-11-10 20:40:06 -05:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2012-09-07 23:13:55 -04:00
|
|
|
#include <features.h>
|
|
|
|
|
2016-07-03 14:40:11 -04:00
|
|
|
struct utsname {
|
2011-02-12 00:22:29 -05:00
|
|
|
char sysname[65];
|
|
|
|
char nodename[65];
|
|
|
|
char release[65];
|
|
|
|
char version[65];
|
|
|
|
char machine[65];
|
|
|
|
#ifdef _GNU_SOURCE
|
|
|
|
char domainname[65];
|
|
|
|
#else
|
|
|
|
char __domainname[65];
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
|
|
|
int uname (struct utsname *);
|
|
|
|
|
2011-11-10 20:40:06 -05:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2011-02-12 00:22:29 -05:00
|
|
|
|
|
|
|
#endif
|