[PATCH] ntdll: Correct compile error under macos
17 Apr
2020
17 Apr
'20
12:53 p.m.
Signed-off-by: Alistair Leslie-Hughes <leslie_alistair(a)hotmail.com> --- dlls/ntdll/loader.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dlls/ntdll/loader.c b/dlls/ntdll/loader.c index cdc1fcef178..946db7d0193 100644 --- a/dlls/ntdll/loader.c +++ b/dlls/ntdll/loader.c @@ -31,6 +31,10 @@ # include <sys/mman.h> #endif +#if defined(__APPLE__) +# include <mach-o/getsect.h> +#endif + #include "ntstatus.h" #define WIN32_NO_STATUS #define NONAMELESSUNION -- 2.25.1
2156
Age (days ago)
2156
Last active (days ago)
0 comments
1 participants
participants (1)
-
Alistair Leslie-Hughes