comparison dmd/hdrgen.c @ 1103:b30fe7e1dbb9

- Updated to DMD frontend 1.041. - Removed dmd/inifile.c , it's not under a free license, replaced with libconfig based config file.
author Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
date Thu, 12 Mar 2009 20:37:27 +0100
parents cbd6c8073a32
children
comparison
equal deleted inserted replaced
1102:ae950bd712d3 1103:b30fe7e1dbb9
22 #include <assert.h> 22 #include <assert.h>
23 #if __DMC__ 23 #if __DMC__
24 #include <complex.h> 24 #include <complex.h>
25 #endif 25 #endif
26 26
27 #if IN_GCC || IN_LLVM 27 #include "rmem.h"
28 #include "mem.h"
29 #else
30 #if _WIN32
31 #include "..\root\mem.h"
32 #elif POSIX
33 #include "../root/mem.h"
34 #else
35 #error "fix this"
36 #endif
37 #endif
38 28
39 #include "id.h" 29 #include "id.h"
40 #include "init.h" 30 #include "init.h"
41 31
42 #include "attrib.h" 32 #include "attrib.h"