comparison dmd/inifile.c @ 872:aa953cc960b6

Apply BlueZeniX's patch for OpenSolaris compatibility. Fixes #158.
author Christian Kamm <kamm incasoftware de>
date Sun, 04 Jan 2009 15:49:28 +0100
parents cbd6c8073a32
children 2667e3a145be
comparison
equal deleted inserted replaced
871:e70a0e7e2260 872:aa953cc960b6
7 7
8 #include <stdio.h> 8 #include <stdio.h>
9 #include <string.h> 9 #include <string.h>
10 #include <stdlib.h> 10 #include <stdlib.h>
11 #include <ctype.h> 11 #include <ctype.h>
12
13 #if (defined (__SVR4) && defined (__sun))
14 #include <alloca.h>
15 #endif
12 16
13 #include "root.h" 17 #include "root.h"
14 #include "mem.h" 18 #include "mem.h"
15 19
16 #ifdef __MINGW32__ 20 #ifdef __MINGW32__