Files
musl/src/linux/swapoff.c
2011-03-20 00:16:43 -04:00

8 lines
114 B
C

#include <sys/swap.h>
#include "syscall.h"
int swapoff(const char *path)
{
return syscall(SYS_swapoff, path);
}