comparison dmd/doc.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 27a379f288bf
children eeb8b95ea92e
comparison
equal deleted inserted replaced
1102:ae950bd712d3 1103:b30fe7e1dbb9
14 #include <string.h> 14 #include <string.h>
15 #include <time.h> 15 #include <time.h>
16 #include <ctype.h> 16 #include <ctype.h>
17 #include <assert.h> 17 #include <assert.h>
18 18
19 #if IN_GCC || IN_LLVM 19 #include "rmem.h"
20 #include "mem.h"
21 #else
22 #if _WIN32
23 #include "..\root\mem.h"
24 #elif POSIX
25 #include "../root/mem.h"
26 #else
27 #error "fix this"
28 #endif
29 #endif
30 20
31 #include "root.h" 21 #include "root.h"
32 22
33 #include "mars.h" 23 #include "mars.h"
34 #include "dsymbol.h" 24 #include "dsymbol.h"