sysinfo.c 113 B

12345678
  1. #include "syscall.h"
  2. struct sysinfo;
  3. int sysinfo(struct sysinfo *info)
  4. {
  5. return syscall(SYS_sysinfo, info);
  6. }