OSDN Git Service

remove standalone syscall cruft
[android-x86/external-musl-libc.git] / src / linux / sysinfo.c
1 #include "syscall.h"
2
3 struct sysinfo;
4
5 int sysinfo(struct sysinfo *info)
6 {
7         return syscall1(__NR_sysinfo, (long)info);
8 }