9f95e82d42743d2bedb8e289587c7bb026b32cc3
[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 }