comparison 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
comparison
equal deleted inserted replaced
1102:ae950bd712d3 1103:b30fe7e1dbb9
1 #ifndef __RMEM_H__
2 #define __RMEM_H__
3
4 // jam memory stuff here
5
6 #include "mem.h"
7
8 #if (defined (__SVR4) && defined (__sun))
9 #include <alloca.h>
10 #endif
11
12 #ifdef __MINGW32__
13 #include <malloc.h>
14 #endif
15
16 #endif // __RMEM_H__