more crt, crtdll and msvcrt cleanup
[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 /* These will go away or be moved soon enough */
6 #define _CRT_NON_CONFORMING_SWPRINTFS
7 #define _CRT_SECURE_NO_DEPRECATE
8 #define _INC_WTIME_INL
9 #define _INC_UTIME_INL
10 #define _INC_TIME_INL
11
12 /* Headers to be compiled */
13 #include <stdlib.h>
14 #include <stdio.h>
15 #include <string.h>
16 #include <conio.h>
17 #include <errno.h>
18 #include <fcntl.h>
19 #include <float.h>
20 #include <malloc.h>
21 #include <math.h>
22 #include <limits.h>
23
24 #include <sys/stat.h>
25 #include <share.h>
26
27 /* PSDK/NDK Headers */
28 #define WIN32_NO_STATUS
29 #include <windows.h>
30 #include <ndk/ntndk.h>
31 #include <reactos/helper.h>
32
33 #if !defined(_MSC_VER)
34 #include <stdint.h>
35 #endif
36
37 /* CRT Internal data */
38 #include <internal/atexit.h>
39 #include <internal/console.h>
40 #include <internal/file.h>
41 #include <internal/ieee.h>
42 #include <internal/tls.h>
43
44 #endif /* _CRT_PRECOMP_H */