/* * Public domain * sys/mman.h compatibility shim */ #include_next #ifndef LIBCRYPTOCOMPAT_MMAN_H #define LIBCRYPTOCOMPAT_MMAN_H #ifndef MAP_ANON #ifdef MAP_ANONYMOUS #define MAP_ANON MAP_ANONYMOUS #else #error "System does not support mapping anonymous pages?" #endif #endif #endif