blob: 8137d51ebff34c0e3658adaa1ca476fcacaf0dc5 (
plain) (
tree)
|
|
#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);
}
|