1
0
mirror of https://github.com/fluencelabs/musl synced 2025-06-07 03:51:36 +00:00

9 lines
113 B
C
Raw Normal View History

2011-02-12 00:22:29 -05:00
#include "syscall.h"
struct sysinfo;
int sysinfo(struct sysinfo *info)
{
return syscall(SYS_sysinfo, info);
2011-02-12 00:22:29 -05:00
}