Added a bunch of stuff

This commit is contained in:
Gitea 2020-12-01 17:40:03 -06:00
parent 66350160b0
commit 77c2abd247
66 changed files with 1808 additions and 0 deletions

14
include/sys/utsname.h Normal file
View 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