fix misplaced indention in sys/procfs.h
[musl.git] / include / sys / swap.h
blob11c0f9296179d328e6e74fabc7f4cf1b47ea4355
1 #ifndef _SYS_SWAP_H
2 #define _SYS_SWAP_H
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
9 #define SWAP_FLAG_PREFER 0x8000
10 #define SWAP_FLAG_PRIO_MASK 0x7fff
11 #define SWAP_FLAG_PRIO_SHIFT 0
12 #define SWAP_FLAG_DISCARD 0x10000
14 int swapon (const char *, int);
15 int swapoff (const char *);
17 #ifdef __cplusplus
19 #endif
21 #endif