diff dmd/rmem.h @ 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
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/dmd/rmem.h	Thu Mar 12 20:37:27 2009 +0100
@@ -0,0 +1,16 @@
+#ifndef __RMEM_H__
+#define __RMEM_H__
+
+// jam memory stuff here
+
+#include "mem.h"
+
+#if (defined (__SVR4) && defined (__sun))
+#include <alloca.h>
+#endif
+
+#ifdef __MINGW32__
+#include <malloc.h>
+#endif
+
+#endif // __RMEM_H__