fix some type leakage (timer_t) from x86_64 commit
[musl] / src / linux / sysinfo.c
1 #define SYSCALL_STANDALONE
2 #include "syscall.h"
3
4 struct sysinfo;
5
6 int sysinfo(struct sysinfo *info)
7 {
8         return syscall1(__NR_sysinfo, (long)info);
9 }