Luna/libc/include/bits/struct_utsname.h
apio 9eab0886b6
All checks were successful
continuous-integration/drone/push Build is passing
kernel+libc: Add uname()
2023-04-24 20:34:44 +02:00

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