00001 /* Configuration for GNU C-compiler for openVMS/Alpha. 00002 Copyright (C) 1996, 1997, 2001 Free Software Foundation, Inc. 00003 Contributed by Klaus Kaempf (kkaempf@progis.de). 00004 00005 This file is part of GNU CC. 00006 00007 GNU CC is free software; you can redistribute it and/or modify 00008 it under the terms of the GNU General Public License as published by 00009 the Free Software Foundation; either version 2, or (at your option) 00010 any later version. 00011 00012 GNU CC is distributed in the hope that it will be useful, 00013 but WITHOUT ANY WARRANTY; without even the implied warranty of 00014 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00015 GNU General Public License for more details. 00016 00017 You should have received a copy of the GNU General Public License 00018 along with GNU CC; see the file COPYING. If not, write to 00019 the Free Software Foundation, 59 Temple Place - Suite 330, 00020 Boston, MA 02111-1307, USA. */ 00021 00022 #define HOST_WIDE_INT long long 00023 #define HOST_BITS_PER_WIDE_INT 64 00024 00025 /* A couple of conditionals for execution machine are controlled here. */ 00026 #ifndef VMS 00027 #define VMS 00028 #endif 00029 00030 /* Define a local equivalent (sort of) for unlink */ 00031 #define unlink remove 00032 00033 /* Causes exit() to be redefined to __posix_exit() and 00034 Posix compatible failure and success codes to be used */ 00035 #define _POSIX_EXIT 1 00036 00037 /* Open files in stream mode if not otherwise explicitly specified */ 00038 #define __UNIX_FOPEN 1 00039 00040 /* Write to stdout using fputc to avoid record terminators in pipes */ 00041 #define __UNIX_FWRITE 1 00042 00043 #define STDC_HEADERS 1 00044 00045 #define HOST_EXECUTABLE_SUFFIX ".exe" 00046 #define HOST_OBJECT_SUFFIX ".obj" 00047 00048 #define DUMPFILE_FORMAT "_%02d_"
1.5.6