Files
musl/src/linux/swapon.c

8 lines
138 B
C
Raw Normal View History

2011-02-12 00:22:29 -05:00
#include <sys/swap.h>
#include "syscall.h"
int swapon(const char *path, int flags)
{
return syscall2(__NR_swapon, (long)path, flags);
}