diff options
Diffstat (limited to 'newlib/libc/sys/linux/systat.c')
-rw-r--r-- | newlib/libc/sys/linux/systat.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/newlib/libc/sys/linux/systat.c b/newlib/libc/sys/linux/systat.c new file mode 100644 index 000000000..015e3f056 --- /dev/null +++ b/newlib/libc/sys/linux/systat.c @@ -0,0 +1,10 @@ +/* libc/sys/linux/systat.c - System calls related to overall system state */ + +/* Written 2000 by Werner Almesberger */ + + +#include <sys/utsname.h> +#include <sys/syscall.h> + + +_syscall1(int,uname,struct utsname *,name) |