comparison dmd/root.c @ 285:297690b5d4a5 trunk

[svn r306] Fixed: it's now possible to compile and link llvmdc with MinGW32 and msys on Win32 :D I tried it myself ;) Building the runtime still needs some work, but it's a step in the right direction.
author lindquist
date Sat, 21 Jun 2008 03:14:49 +0200
parents c53b6e3fe49a
children 2b72433d5c8c
comparison
equal deleted inserted replaced
284:70c370e97944 285:297690b5d4a5
12 #include <stdarg.h> 12 #include <stdarg.h>
13 #include <string.h> 13 #include <string.h>
14 #include <stdint.h> 14 #include <stdint.h>
15 #include <assert.h> 15 #include <assert.h>
16 16
17 #if _MSC_VER 17 #if _MSC_VER ||__MINGW32__
18 #include <malloc.h> 18 #include <malloc.h>
19 #endif 19 #endif
20 20
21 #if _WIN32 21 #if _WIN32
22 #include <windows.h> 22 #include <windows.h>