initial check-in, version 0.5.0
[musl] / src / linux / swapon.c
1 #include <sys/swap.h>
2 #define SYSCALL_STANDALONE
3 #include "syscall.h"
4
5 int swapon(const char *path, int flags)
6 {
7         return syscall2(__NR_swapon, (long)path, flags);
8 }