2014-07-29 07:39:23 -05:00
|
|
|
#include_next <sys/mman.h>
|
|
|
|
|
|
|
|
#ifndef LIBCRYPTOCOMPAT_MMAN_H
|
|
|
|
#define LIBCRYPTOCOMPAT_MMAN_H
|
|
|
|
|
2014-07-30 22:16:01 -05:00
|
|
|
#ifndef MAP_ANON
|
|
|
|
#ifdef MAP_ANONYMOUS
|
|
|
|
#define MAP_ANON MAP_ANONYMOUS
|
2014-07-29 07:39:23 -05:00
|
|
|
#else
|
|
|
|
#error "System does not support mapping anonymous pages?"
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|