initial check-in, version 0.5.0
[musl] / include / sys / swap.h
1 #ifndef _SYS_SWAP_H
2 #define _SYS_SWAP_H
3
4 #define SWAP_FLAG_PREFER        0x8000
5 #define SWAP_FLAG_PRIO_MASK     0x7fff
6 #define SWAP_FLAG_PRIO_SHIFT    0
7
8 int swapon (const char *, int);
9 int swapoff (const char *);
10
11 #endif