diff options
Diffstat (limited to '')
-rw-r--r-- | libc-top-half/musl/src/linux/swap.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/libc-top-half/musl/src/linux/swap.c b/libc-top-half/musl/src/linux/swap.c new file mode 100644 index 0000000..8137d51 --- /dev/null +++ b/libc-top-half/musl/src/linux/swap.c @@ -0,0 +1,12 @@ +#include <sys/swap.h> +#include "syscall.h" + +int swapon(const char *path, int flags) +{ + return syscall(SYS_swapon, path, flags); +} + +int swapoff(const char *path) +{ + return syscall(SYS_swapoff, path); +} |