1
0
mirror of https://github.com/fluencelabs/musl synced 2025-06-11 14:01:34 +00:00
Files
musl/src/linux/swapon.c

8 lines
130 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 syscall(SYS_swapon, path, flags);
2011-02-12 00:22:29 -05:00
}