grub/grub-core/osdep/dl.c
Vladimir Serbinenko a19293cb75 Move OS-dependent mprotect for module loading to grub-core/osdep/*/dl.c
and implement windows variant.
2013-12-08 18:08:23 +01:00

5 lines
108 B
C

#if defined (__MINGW32__) || defined (__CYGWIN__)
#include "windows/dl.c"
#else
#include "unix/dl.c"
#endif