fix some type leakage (timer_t) from x86_64 commit
[musl] / src / linux / swapoff.c
1 #include <sys/swap.h>
2 #define SYSCALL_STANDALONE
3 #include "syscall.h"
4
5 int swapoff(const char *path)
6 {
7         return syscall1(__NR_swapoff, (long)path);
8 }