diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-04-03 16:37:26 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-04-03 16:37:26 +0000 |
commit | 68215e49a61b9179c353b5edd9b5796b04acdba0 (patch) | |
tree | 28111445709b1e369e559db59f8c46cf5b81a203 /gcc/halfpic.h | |
parent | 489ae1b6ce3a4da007b9b313a477ac4105dccab1 (diff) | |
download | ppe42-gcc-68215e49a61b9179c353b5edd9b5796b04acdba0.tar.gz ppe42-gcc-68215e49a61b9179c353b5edd9b5796b04acdba0.zip |
dummy commit before merge
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@18980 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/halfpic.h')
-rw-r--r-- | gcc/halfpic.h | 26 |
1 files changed, 4 insertions, 22 deletions
diff --git a/gcc/halfpic.h b/gcc/halfpic.h index b02b81ee563..f9c1a695517 100644 --- a/gcc/halfpic.h +++ b/gcc/halfpic.h @@ -1,5 +1,5 @@ /* OSF/rose half-pic support definitions. - Copyright (C) 1992, 1996 Free Software Foundation, Inc. + Copyright (C) 1992, 1996, 1997 Free Software Foundation, Inc. This file is part of GNU CC. @@ -20,24 +20,7 @@ Boston, MA 02111-1307, USA. */ #ifndef NO_HALF_PIC -/* Add prototype support. */ -/* ??? It would be nice to use gansidecl.h here but there's an extra - complication with NO_STDIO_H that must be dealt with. */ -#ifndef PROTO -#if defined (USE_PROTOTYPES) ? USE_PROTOTYPES : defined (__STDC__) -#define PROTO(ARGS) ARGS -#else -#define PROTO(ARGS) () -#endif -#endif - -#if !defined(STDIO_PROTO) && !defined(NO_STDIO_H) -#ifndef BUFSIZ -#include <stdio.h> -#endif - -#define STDIO_PROTO(ARGS) PROTO(ARGS) -#endif +#include "gansidecl.h" #if defined (USE_PROTOTYPES) ? USE_PROTOTYPES : defined (__STDC__) union tree_node; /* forward reference */ @@ -64,9 +47,8 @@ extern void half_pic_external PROTO((char *)); /* declare object external */ extern void half_pic_init PROTO((void)); /* half_pic initialization */ extern int half_pic_address_p PROTO((struct rtx_def *)); /* true if an address is half-pic */ extern struct rtx_def *half_pic_ptr PROTO((struct rtx_def *)); /* return RTX for half-pic pointer */ -#ifdef STDIO_PROTO -extern void half_pic_finish STDIO_PROTO((FILE *)); /* half_pic termination */ -#endif +/* Can't use prototype since FILE isn't defined yet. */ +extern void half_pic_finish (/* FILE * */); /* half_pic termination */ /* Macros to provide access to the half-pic stuff (so they can easily be stubbed out. */ |