mirror of https://git.musl-libc.org/git/musl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
281 B
22 lines
281 B
|
15 years ago
|
#ifndef _SYS_UTSNAME_H
|
||
|
|
#define _SYS_UTSNAME_H
|
||
|
|
|
||
|
|
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 *);
|
||
|
|
|
||
|
|
|
||
|
|
#endif
|