Commit 3e4a9cb4 authored by Alexandre Julliard's avatar Alexandre Julliard

kernel32: Include system headers before Windows headers.

parent 2fff57a5
......@@ -41,6 +41,13 @@
# include <sys/prctl.h>
#endif
#include <sys/types.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#ifdef __APPLE__
#include <CoreFoundation/CoreFoundation.h>
#include <pthread.h>
#endif
#include "ntstatus.h"
#define WIN32_NO_STATUS
......@@ -57,9 +64,6 @@ WINE_DECLARE_DEBUG_CHANNEL(file);
WINE_DECLARE_DEBUG_CHANNEL(relay);
#ifdef __APPLE__
#include <CoreFoundation/CoreFoundation.h>
#include <pthread.h>
#include <unistd.h>
extern char **__wine_get_main_environment(void);
#else
extern char **__wine_main_environ;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment