Rich Felker | 0b44a03 | 2011-02-12 00:22:29 -0500 | [diff] [blame] | 1 | #include <sys/utsname.h> |
2 | #include <string.h> | ||||
3 | #include "syscall.h" | ||||
4 | |||||
5 | int uname(struct utsname *uts) | ||||
6 | { | ||||
Rich Felker | aa398f5 | 2011-03-20 00:16:43 -0400 | [diff] [blame] | 7 | return syscall(SYS_uname, uts); |
Rich Felker | 0b44a03 | 2011-02-12 00:22:29 -0500 | [diff] [blame] | 8 | } |