diff --git a/testsuites/psxtests/psxenosys/init.c b/testsuites/psxtests/psxenosys/init.c index 500e003c3c..e0ac089240 100644 --- a/testsuites/psxtests/psxenosys/init.c +++ b/testsuites/psxtests/psxenosys/init.c @@ -9,17 +9,27 @@ * $Id$ */ +#include +#include +#if HAVE_SYS_MMAN_H +/* POSIX mandates mprotect in sys/mman.h, but newlib doesn't have this */ +#include +#endif + #define CONFIGURE_INIT #include "system.h" #include "tmacros.h" #include -#include #include #include #include #include +#if !HAVE_DECL_MPROTECT +extern int mprotect(const void *addr, size_t len, int prot); +#endif + void check_enosys(int status); void check_enosys(int status)