mirror of
https://github.com/fluencelabs/musl
synced 2025-05-30 08:01:38 +00:00
8 lines
130 B
C
8 lines
130 B
C
#include <sys/swap.h>
|
|
#include "syscall.h"
|
|
|
|
int swapon(const char *path, int flags)
|
|
{
|
|
return syscall(SYS_swapon, path, flags);
|
|
}
|