18 lines
349 B
C
18 lines
349 B
C
/* bits/struct_utsname.h: The utsname structure. */
|
|
|
|
#ifndef _BITS_STRUCT_UTSNAME_H
|
|
#define _BITS_STRUCT_UTSNAME_H
|
|
|
|
#define _UTSNAME_LENGTH 256
|
|
|
|
struct utsname
|
|
{
|
|
char sysname[_UTSNAME_LENGTH];
|
|
char nodename[_UTSNAME_LENGTH];
|
|
char release[_UTSNAME_LENGTH];
|
|
char version[_UTSNAME_LENGTH];
|
|
char machine[_UTSNAME_LENGTH];
|
|
};
|
|
|
|
#endif
|