mirror of
https://github.com/fluencelabs/musl
synced 2025-06-12 22:41:37 +00:00
8 lines
138 B
C
8 lines
138 B
C
![]() |
#include <sys/swap.h>
|
||
|
#include "syscall.h"
|
||
|
|
||
|
int swapon(const char *path, int flags)
|
||
|
{
|
||
|
return syscall2(__NR_swapon, (long)path, flags);
|
||
|
}
|