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