| 1 | #include <sys/swap.h> |
| 2 | #include "syscall.h" |
| 3 | |
| 4 | int swapon(const char *path, int flags) |
| 5 | { |
| 6 | 	return syscall(SYS_swapon, path, flags); |
| 7 | } |
| 8 | |
| 9 | int swapoff(const char *path) |
| 10 | { |
| 11 | 	return syscall(SYS_swapoff, path); |
| 12 | } |