comparison dmd/module.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 ccd07d9f2ce9
children aaade6ded589
comparison
equal deleted inserted replaced
284:70c370e97944 285:297690b5d4a5
10 10
11 #include <stdio.h> 11 #include <stdio.h>
12 #include <stdlib.h> 12 #include <stdlib.h>
13 #include <assert.h> 13 #include <assert.h>
14 14
15 #ifdef _MSC_VER 15 #if _MSC_VER || __MINGW32__
16 #include <malloc.h> 16 #include <malloc.h>
17 #endif 17 #endif
18 18
19 #if IN_GCC 19 #if IN_GCC
20 #include "gdc_alloca.h" 20 #include "gdc_alloca.h"