2011-02-12 05:22:29 +00:00
|
|
|
#ifndef _SYS_UTSNAME_H
|
|
|
|
#define _SYS_UTSNAME_H
|
|
|
|
|
2011-11-11 01:40:06 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2012-09-08 03:13:55 +00:00
|
|
|
#include <features.h>
|
|
|
|
|
2011-02-12 05:22:29 +00:00
|
|
|
struct utsname
|
|
|
|
{
|
|
|
|
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-11 01:40:06 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2011-02-12 05:22:29 +00:00
|
|
|
|
|
|
|
#endif
|