math: move x86_64 exp2l implementation to exp2l.s from expl.s
[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 }