Get compiling with Vorland C++ for Windows
[fw/sdcc] / support / cpp / config.h
1 #include "i386/i386.h" 
2 #include "i386/xm-linux.h"  
3
4 #ifndef __BORLANDC__
5 #define alloca malloc
6 #else
7 #include <string.h>
8 #include <stdlib.h>
9 #define bcopy(s, d, n)  memcpy(d, s, n)
10 #define bcmp memcmp
11 #define bzero(p, l) memset(p, 0, l)
12 #define index strchr
13 #define rindex strrchr
14 #endif
15
16