#include #include "syscall.h" int uname(struct utsname *uts) { return syscall(SYS_uname, uts); } #ifdef TEST int main(void) { return 0; } #endif