musl - an implementation of the standard library for Linux-based systems
blob: 46db90d30bf7a32f87085db5d5e57ddba4992a69 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#include <sys/utsname.h>
#include <string.h>
#include "syscall.h"
int uname(struct utsname *uts)
{
return syscall(SYS_uname, uts);
}
|