swapoff.c 114 B

1234567
  1. #include <sys/swap.h>
  2. #include "syscall.h"
  3. int swapoff(const char *path)
  4. {
  5. return syscall(SYS_swapoff, path);
  6. }