Files
musl/src/linux/swapoff.c

8 lines
114 B
C
Raw Normal View History

2011-02-12 00:22:29 -05:00
#include <sys/swap.h>
#include "syscall.h"
int swapoff(const char *path)
{
return syscall(SYS_swapoff, path);
2011-02-12 00:22:29 -05:00
}