summaryrefslogtreecommitdiff
path: root/gcc/f/proj.h
diff options
context:
space:
mode:
authorfx <fx@138bc75d-0d04-0410-961f-82ee72b054a4>1998-07-15 07:07:55 +0000
committerfx <fx@138bc75d-0d04-0410-961f-82ee72b054a4>1998-07-15 07:07:55 +0000
commitf2658a207eb636f37bcd649134a1fb4f382a45b2 (patch)
tree9165938760b2c1a1a4b567a9e304b77454c34686 /gcc/f/proj.h
parenta568aac932bd409be4c882bb50bf3556d3817bff (diff)
downloadgcc-f2658a207eb636f37bcd649134a1fb4f382a45b2.tar.gz
Mon Jul 13 17:33:44 1998 Craig Burley <burley@gnu.org>
Cleanups vis-a-vis system.h cutover and g77-0.5.24: * Makefile.in (fini.o): Define USE_HCONFIG macro so source code doesn't have to. * fini.c: Don't define USE_HCONFIG here, since source code usually shouldn't care about this. * ansify.c: Include stddef.h only if we have it. * intdoc.c: Ditto. * proj.h: Ditto. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@21176 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/f/proj.h')
-rw-r--r--gcc/f/proj.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/f/proj.h b/gcc/f/proj.h
index e592d8bbb3b..93b12b330c8 100644
--- a/gcc/f/proj.h
+++ b/gcc/f/proj.h
@@ -46,10 +46,15 @@ the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
/* Include files everyone gets. <assert.h> is needed for assert().
<stddef.h> is needed for offsetof, but technically also NULL,
size_t, ptrdiff_t, and so on. */
+
#include "assert.j"
+
+#if HAVE_STDDEF_H
#include <stddef.h>
+#endif
/* Generally useful definitions. */
+
typedef enum
{
#if !defined(false) || !defined(true)