diff options
Diffstat (limited to 'lib/mlibc/abis/linux/utsname.h')
-rw-r--r-- | lib/mlibc/abis/linux/utsname.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/mlibc/abis/linux/utsname.h b/lib/mlibc/abis/linux/utsname.h new file mode 100644 index 0000000..9875a46 --- /dev/null +++ b/lib/mlibc/abis/linux/utsname.h @@ -0,0 +1,13 @@ +#ifndef _ABIBITS_UTSNAME_T_H +#define _ABIBITS_UTSNAME_T_H + +struct utsname { + char sysname[65]; + char nodename[65]; + char release[65]; + char version[65]; + char machine[65]; + char domainname[65]; +}; + +#endif // _ABIBITS_UTSNAME_T_H |