config-ns32k.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. /* Configuration for GNU C-compiler for Vax.
  2. Copyright (C) 1987 Free Software Foundation, Inc.
  3. This file is part of GNU CC.
  4. GNU CC is distributed in the hope that it will be useful,
  5. but WITHOUT ANY WARRANTY. No author or distributor
  6. accepts responsibility to anyone for the consequences of using it
  7. or for whether it serves any particular purpose or works at all,
  8. unless he says so in writing. Refer to the GNU CC General Public
  9. License for full details.
  10. Everyone is granted permission to copy, modify and redistribute
  11. GNU CC, but only under the conditions described in the
  12. GNU CC General Public License. A copy of this license is
  13. supposed to have been given to you along with GNU CC so you
  14. can know your rights and responsibilities. It should be in a
  15. file named COPYING. Among other things, the copyright notice
  16. and this notice must be preserved on all copies. */
  17. /* #defines that need visibility everywhere. */
  18. #define FALSE 0
  19. #define TRUE 1
  20. /* target machine dependencies.
  21. tm.h is a symbolic link to the actual target specific file. */
  22. #include "tm.h"
  23. /* This describes the machine the compiler is hosted on. */
  24. #define HOST_BITS_PER_CHAR 8
  25. #define HOST_BITS_PER_SHORT 16
  26. #define HOST_BITS_PER_INT 32
  27. #define HOST_BITS_PER_LONG 32
  28. /* Arguments to use with `exit'. */
  29. #define SUCCESS_EXIT_CODE 0
  30. #define FATAL_EXIT_CODE 33