Squash commits for public release
This commit is contained in:
15
libs/libc/include/bits/sys/utsname.h
Normal file
15
libs/libc/include/bits/sys/utsname.h
Normal file
@@ -0,0 +1,15 @@
|
||||
#ifndef _LIBC_BITS_SYS_UTSNAME_H
|
||||
#define _LIBC_BITS_SYS_UTSNAME_H
|
||||
|
||||
#define UTSNAME_ENTRY_LEN 65
|
||||
|
||||
struct utsname {
|
||||
char sysname[UTSNAME_ENTRY_LEN];
|
||||
char nodename[UTSNAME_ENTRY_LEN];
|
||||
char release[UTSNAME_ENTRY_LEN];
|
||||
char version[UTSNAME_ENTRY_LEN];
|
||||
char machine[UTSNAME_ENTRY_LEN];
|
||||
};
|
||||
typedef struct utsname utsname_t;
|
||||
|
||||
#endif // _LIBC_BITS_SYS_UTSNAME_H
|
||||
Reference in New Issue
Block a user