add fanotify syscall wrapper and header
[musl] / src / linux / sysinfo.c
1 #include <sys/sysinfo.h>
2 #include "syscall.h"
3
4 int sysinfo(struct sysinfo *info)
5 {
6         return syscall(SYS_sysinfo, info);
7 }