diff --git a/reactos/lib/ntdll/inc/ntdll.h b/reactos/lib/ntdll/inc/ntdll.h index 11e6fb85239..4fc90fc47ed 100644 --- a/reactos/lib/ntdll/inc/ntdll.h +++ b/reactos/lib/ntdll/inc/ntdll.h @@ -10,9 +10,8 @@ /* SDK/DDK/NDK Headers. */ #include -#include /* FIXME: NDK */ -#include /* FIXME: NDK */ -#include /* FIXME: NDK */ +#define NTOS_MODE_USER +#include /* NTDLL Public Headers. FIXME: Combine/clean these after NDK */ #include diff --git a/reactos/lib/ntdll/ldr/startup.c b/reactos/lib/ntdll/ldr/startup.c index ff24c3c5e2e..533ce848abc 100644 --- a/reactos/lib/ntdll/ldr/startup.c +++ b/reactos/lib/ntdll/ldr/startup.c @@ -279,7 +279,7 @@ __true_LdrInitializeThunk (ULONG Unknown1, ZwTerminateProcess(NtCurrentProcess(), Status); } - Peb->NumberOfProcessors = SystemInformation.NumberProcessors; + Peb->NumberOfProcessors = SystemInformation.NumberOfProcessors; /* Initialize Critical Section Data */ RtlpInitDeferedCriticalSection();