musl/include/sys/swap.h

21 lines
292 B
C
Raw Normal View History

2011-02-12 05:22:29 +00:00
#ifndef _SYS_SWAP_H
#define _SYS_SWAP_H
#ifdef __cplusplus
extern "C" {
#endif
2011-02-12 05:22:29 +00:00
#define SWAP_FLAG_PREFER 0x8000
#define SWAP_FLAG_PRIO_MASK 0x7fff
#define SWAP_FLAG_PRIO_SHIFT 0
int swapon (const char *, int);
int swapoff (const char *);
#ifdef __cplusplus
}
#endif
2011-02-12 05:22:29 +00:00
#endif