Use new tail-calling mechanism on ARM.
[official-gcc.git] / gcc / f / proj.h
blobd55bd88f8a61cd097350acfb310dfcffbd6023c5
1 /* proj.h file for Gnu Fortran
2 Copyright (C) 1995, 1996 Free Software Foundation, Inc.
3 Contributed by James Craig Burley.
5 This file is part of GNU Fortran.
7 GNU Fortran is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GNU Fortran is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Fortran; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA.
24 #ifndef _H_f_proj
25 #define _H_f_proj
27 #ifdef USE_HCONFIG
28 #include "hconfig.j"
29 #else
30 #include "config.j"
31 #endif
32 #include "system.j"
34 #if (GCC_VERSION < 2000)
35 #error "You have to use gcc 2.x to build g77 (might be fixed in g77-0.6)."
36 #endif
38 /* Include files everyone gets. <assert.h> is needed for assert().
39 <stddef.h> is needed for offsetof, but technically also NULL,
40 size_t, ptrdiff_t, and so on. */
42 #include "assert.j"
44 #if HAVE_STDDEF_H
45 #include <stddef.h>
46 #endif
48 /* Generally useful definitions. */
50 typedef enum
52 #if !defined(false) || !defined(true)
53 false = 0, true = 1,
54 #endif
55 #if !defined(FALSE) || !defined(TRUE)
56 FALSE = 0, TRUE = 1,
57 #endif
58 Doggone_Trailing_Comma_Dont_Work = 1
59 } bool;
61 #define ARRAY_SIZE(a) (sizeof(a)/sizeof(a[0]))
63 #ifndef UNUSED /* Compile with -DUNUSED= if cc doesn't support this. */
64 #define UNUSED ATTRIBUTE_UNUSED
65 #endif /* !defined (UNUSED) */
67 #ifndef dmpout
68 #define dmpout stderr
69 #endif
71 #endif