home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 7 / FreshFishVol7.bin / bbs / gnu / gcc-2.3.3-src.lha / GNU / src / amiga / gcc-2.3.3 / config / xm-linux.h < prev    next >
C/C++ Source or Header  |  1994-02-06  |  509b  |  24 lines

  1. /* Configuration for GCC for Intel i386 running Linux.
  2.  *
  3.  * Written by H.J. Lu (hlu@eecs.wsu.edu)
  4.  */
  5.  
  6. #include "xm-i386.h"
  7. #include "xm-svr3.h"
  8.  
  9. #undef BSTRING
  10. #define BSTRING
  11. #undef bcmp
  12. #undef bcopy
  13. #undef bzero
  14. #undef index
  15. #undef rindex
  16.  
  17. #if 0 /* These conflict with stdlib.h in protoize, it is said,
  18.      and there's no evidence they are actually needed.  */
  19. #undef malloc(n)
  20. #define malloc(n)    malloc ((n) ? (n) : 1)
  21. #undef calloc(n,e)
  22. #define calloc(n,e)    calloc (((n) ? (n) : 1), ((e) ? (e) : 1))
  23. #endif
  24.