lang-bootstrap/05/musl-0.6.0/include/sys/swap.h

12 lines
222 B
C
Raw Normal View History

2022-02-20 13:18:21 -08:00
#ifndef _SYS_SWAP_H
#define _SYS_SWAP_H
#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 *);
#endif