home *** CD-ROM | disk | FTP | other *** search
/ Whiteline: Alpha / Whiteline Alpha.iso / progtool / c / gcc / gcc258s.zoo / config / i386 / xm-linux.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-12-30  |  514 b   |  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 "i386/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.