2020-12-01 23:40:03 +00:00
|
|
|
#ifndef _SYS_UTSNAME_H
|
|
|
|
#define _SYS_UTSNAME_H
|
|
|
|
|
2020-12-09 00:12:54 +00:00
|
|
|
struct utsname {
|
2020-12-01 23:40:03 +00:00
|
|
|
char sysname[70];
|
|
|
|
char nodename[70];
|
|
|
|
char release[70];
|
|
|
|
char version[70];
|
|
|
|
char machine[70];
|
2020-12-09 00:12:54 +00:00
|
|
|
};
|
2020-12-01 23:40:03 +00:00
|
|
|
|
|
|
|
int uname(utsname *);
|
|
|
|
|
|
|
|
#endif
|