22 lines
291 B
C
22 lines
291 B
C
|
#ifndef _SYS_MMAN_H
|
||
|
#define _SYS_MMAN_H
|
||
|
|
||
|
#include <stddef.h>
|
||
|
|
||
|
typedef unsigned long off_t;
|
||
|
|
||
|
#define MAP_FAILED (void*)-1
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C"
|
||
|
{
|
||
|
#endif
|
||
|
|
||
|
void* mmap(void*, size_t, int, int, int, off_t);
|
||
|
int munmap(void* addr, size_t len);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|