blob: 015e3f05646b7f299c041ce5f20509b05832762e (
plain)
1
2
3
4
5
6
7
8
9
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)
|