summaryrefslogblamecommitdiff
path: root/src/linux/swapoff.c
blob: 9f95e82d42743d2bedb8e289587c7bb026b32cc3 (plain) (tree)
1
2
3
4
5
6
7
                     



                             
                                          
 
#include <sys/swap.h>
#include "syscall.h"

int swapoff(const char *path)
{
	return syscall(SYS_swapoff, path);
}