update syscalls with off_t arguments to handle argument alignment, if needed
[musl] / src / linux / swapoff.c
1 #include <sys/swap.h>
2 #include "syscall.h"
3
4 int swapoff(const char *path)
5 {
6         return syscall(SYS_swapoff, path);
7 }