|
|
1.1 root 1: /* Configuration for GNU C-compiler for Vax.
2: Copyright (C) 1987 Free Software Foundation, Inc.
3:
4: This file is part of GNU CC.
5:
6: GNU CC is distributed in the hope that it will be useful,
7: but WITHOUT ANY WARRANTY. No author or distributor
8: accepts responsibility to anyone for the consequences of using it
9: or for whether it serves any particular purpose or works at all,
10: unless he says so in writing. Refer to the GNU CC General Public
11: License for full details.
12:
13: Everyone is granted permission to copy, modify and redistribute
14: GNU CC, but only under the conditions described in the
15: GNU CC General Public License. A copy of this license is
16: supposed to have been given to you along with GNU CC so you
17: can know your rights and responsibilities. It should be in a
18: file named COPYING. Among other things, the copyright notice
19: and this notice must be preserved on all copies. */
20:
21: /* #defines that need visibility everywhere. */
22: #define FALSE 0
23: #define TRUE 1
24:
25: /* target machine dependencies.
26: tm.h is a symbolic link to the actual target specific file. */
27: #include "tm.h"
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: #define SUCCESS_EXIT_CODE 1
36: #define FATAL_EXIT_CODE 0
37:
38: /* A couple of conditionals for execution machine are controlled here. */
39: #ifndef VMS
40: #define VMS
41: #endif
1.1.1.2 ! root 42:
! 43: #ifndef __GNUC__
! 44: /* not present, at least in VAX-11 C (VMS) v2.2 */
! 45: #define R_OK 4
! 46: #define W_OK 2
! 47: #define X_OK 1
! 48: #define F_OK 0
! 49:
! 50: #define unlink delete
! 51: #endif
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.