diff dmd/macro.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
line wrap: on
line diff
--- a/dmd/macro.c	Thu Mar 12 14:08:57 2009 +0100
+++ b/dmd/macro.c	Thu Mar 12 20:37:27 2009 +0100
@@ -16,19 +16,9 @@
 #include <ctype.h>
 #include <assert.h>
 
-#if IN_GCC || IN_LLVM
-#include "mem.h"
-#else
-#if _WIN32
-#include "..\root\mem.h"
-#elif POSIX
-#include "../root/mem.h"
-#else
-#error "fix this"
-#endif
-#endif
+#include "rmem.h"
+#include "root.h"
 
-#include "root.h"
 #include "macro.h"
 
 #define isidstart(c) (isalpha(c) || (c) == '_')