1
0

sysinfo.c 148 B

123456789
  1. #define SYSCALL_STANDALONE
  2. #include "syscall.h"
  3. struct sysinfo;
  4. int sysinfo(struct sysinfo *info)
  5. {
  6. return syscall1(__NR_sysinfo, (long)info);
  7. }