home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / D / CLISP / CLISPSRC.TAR / clisp-1995-01-01 / utils / gcc-cccp / config.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-05-13  |  1.7 KB  |  59 lines

  1. /* Configuration for GNU C-compiler for some systems.
  2.    Copyright (C) 1988 Free Software Foundation, Inc.
  3.  
  4. This file is part of GNU CC.
  5.  
  6. GNU CC is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 1, or (at your option)
  9. any later version.
  10.  
  11. GNU CC is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with GNU CC; see the file COPYING.  If not, write to
  18. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19.  
  20.  
  21. /* These used to be given as command line arguments, but why bother? */
  22. #define GCC_INCLUDE_DIR "/usr/local/lib/gcc-include"
  23. #define GPLUSPLUS_INCLUDE_DIR "/usr/local/lib/g++-include"
  24.  
  25. /* #defines that need visibility everywhere.  */
  26. #define FALSE 0
  27. #define TRUE 1
  28.  
  29. /* This describes the machine the compiler is hosted on.  */
  30. #define HOST_BITS_PER_CHAR 8
  31. #define HOST_BITS_PER_SHORT 16
  32. #define HOST_BITS_PER_INT 32
  33. #define HOST_BITS_PER_LONG 32
  34.  
  35. /* Arguments to use with `exit'.  */
  36. #define SUCCESS_EXIT_CODE 0
  37. #define FATAL_EXIT_CODE 33
  38.  
  39. #define USG
  40.  
  41. #define bcopy(a,b,c) memcpy (b,a,c)
  42. #define bzero(a,b) memset (a,0,b)
  43. #define bcmp(a,b,c) memcmp (a,b,c)
  44.  
  45. #ifdef __GNUC__
  46. #define alloca(n) __builtin_alloca(n)
  47. #endif
  48.  
  49. /* This depends on the target machine. */
  50. #define BITS_PER_UNIT 8
  51. #define TARGET_BELL '\007'
  52. #define TARGET_BS '\b'
  53. #define TARGET_FF '\f'
  54. #define TARGET_NEWLINE '\n'
  55. #define TARGET_CR '\r'
  56. #define TARGET_TAB '\t'
  57. #define TARGET_VT '\v'
  58.  
  59.