change underlying type of clock_t to be uniform and match ABI
[musl] / src / misc / uname.c
1 #include <sys/utsname.h>
2 #include <string.h>
3 #include "syscall.h"
4
5 int uname(struct utsname *uts)
6 {
7         return syscall(SYS_uname, uts);
8 }