Added a bunch of stuff
This commit is contained in:
parent
66350160b0
commit
77c2abd247
66 changed files with 1808 additions and 0 deletions
14
include/sys/utsname.h
Normal file
14
include/sys/utsname.h
Normal file
|
@ -0,0 +1,14 @@
|
|||
#ifndef _SYS_UTSNAME_H
|
||||
#define _SYS_UTSNAME_H
|
||||
|
||||
typedef struct _uname {
|
||||
char sysname[70];
|
||||
char nodename[70];
|
||||
char release[70];
|
||||
char version[70];
|
||||
char machine[70];
|
||||
} utsname;
|
||||
|
||||
int uname(utsname *);
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue