4f19823fc1a0ca171ecad924e3e4733a549c7aa0
[musl] / src / linux / swapoff.c
1 #include <sys/swap.h>
2 #include "syscall.h"
3
4 int swapoff(const char *path)
5 {
6         return syscall1(__NR_swapoff, (long)path);
7 }