proj.h 1.35 KB
Newer Older
Jeff Law committed
1
/* proj.h file for Gnu Fortran
2
   Copyright (C) 1995, 1996, 2000, 2001, 2002 Free Software Foundation, Inc.
3
   Contributed by James Craig Burley.
Jeff Law committed
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23

This file is part of GNU Fortran.

GNU Fortran is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.

GNU Fortran is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with GNU Fortran; see the file COPYING.  If not, write to
the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA.

*/

24 25
#ifndef GCC_F_PROJ_H
#define GCC_F_PROJ_H
Jeff Law committed
26

Craig Burley committed
27
#ifdef USE_HCONFIG
28
#include "hconfig.h"
Craig Burley committed
29
#else
30
#include "config.h"
Craig Burley committed
31
#endif
32
#include "system.h"
Craig Burley committed
33

34
#if (GCC_VERSION < 2000)
35
 #error "You have to use gcc 2.x to build g77."
Jeff Law committed
36 37
#endif

38
/* Include files everyone gets.  <assert.h> is needed for assert().  */
39

40
#include "assert.h"
41

Jeff Law committed
42
#ifndef UNUSED	/* Compile with -DUNUSED= if cc doesn't support this. */
43
#define UNUSED ATTRIBUTE_UNUSED
Jeff Law committed
44 45 46 47 48 49
#endif  /* !defined (UNUSED) */

#ifndef dmpout
#define dmpout stderr
#endif

50
#endif /* ! GCC_F_PROJ_H */