ca85a3f6ff58f2e645e270a3dff0d8df9f210d2e
[reactos.git] / reactos / lib / crt / precomp.h
1 #ifndef _CRT_PRECOMP_H
2 #define _CRT_PRECOMP_H
3
4 /* Some global constants to hack around the msvc build */
5 #define _CRT_SECURE_NO_DEPRECATE
6 #define _INC_WTIME_INL
7 #define _INC_UTIME_INL
8 #define _INC_TIME_INL
9
10 /* Headers to be compiled */
11 #include <stdio.h>
12 #include <errno.h>
13 #include <fcntl.h>
14 #include <float.h>
15 #include <malloc.h>
16 #include <math.h>
17 #include <limits.h>
18
19 #define WIN32_NO_STATUS
20 #include <windows.h>
21 #define NTOS_MODE_USER
22 #include <ndk/ntndk.h>
23
24 #if !defined(_MSC_VER)
25 #include <stdint.h>
26 #endif
27
28 /* CRT Internal data */
29 #include <internal/file.h>
30 #include <internal/ieee.h>
31
32 #endif /* _CRT_PRECOMP_H */