f6fa794eee2d07bcdf6a5285df608f660c3d4061
[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 }