diff options
Diffstat (limited to 'src/linux/swapon.c')
-rw-r--r-- | src/linux/swapon.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/linux/swapon.c b/src/linux/swapon.c new file mode 100644 index 00000000..13d2876b --- /dev/null +++ b/src/linux/swapon.c @@ -0,0 +1,8 @@ +#include <sys/swap.h> +#define SYSCALL_STANDALONE +#include "syscall.h" + +int swapon(const char *path, int flags) +{ + return syscall2(__NR_swapon, (long)path, flags); +} |