blob: 55ea3420232c9999bd3bbcf5f31c5bf74946ac9e [file] [log] [blame]
Rich Felker0b44a032011-02-12 00:22:29 -05001#include <sys/utsname.h>
Rich Felker0b44a032011-02-12 00:22:29 -05002#include "syscall.h"
3
4int uname(struct utsname *uts)
5{
Rich Felkeraa398f52011-03-20 00:16:43 -04006 return syscall(SYS_uname, uts);
Rich Felker0b44a032011-02-12 00:22:29 -05007}