fix the type of wchar_t on arm; support wchar_t varying with arch
[musl] / src / linux / sysinfo.c
1 #include "syscall.h"
2
3 struct sysinfo;
4
5 int sysinfo(struct sysinfo *info)
6 {
7         return syscall(SYS_sysinfo, info);
8 }