diff options
Diffstat (limited to 'gcc/genopinit.c')
-rw-r--r-- | gcc/genopinit.c | 17 |
1 files changed, 3 insertions, 14 deletions
diff --git a/gcc/genopinit.c b/gcc/genopinit.c index d143e2de8fd..0320c29fc0d 100644 --- a/gcc/genopinit.c +++ b/gcc/genopinit.c @@ -19,16 +19,10 @@ the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#include <stdio.h> #include "hconfig.h" +#include "system.h" #include "rtl.h" #include "obstack.h" -#include <ctype.h> - -#ifdef HAVE_STDLIB_H -#include <stdlib.h> -#endif - static struct obstack obstack; struct obstack *rtl_obstack = &obstack; @@ -36,14 +30,9 @@ struct obstack *rtl_obstack = &obstack; #define obstack_chunk_alloc xmalloc #define obstack_chunk_free free -#ifdef NEED_DECLARATION_FREE -extern void free (); -#endif -extern rtx read_rtx (); - -char *xmalloc (); +char *xmalloc PROTO((unsigned)); static void fatal (); -void fancy_abort (); +void fancy_abort PROTO((void)); /* Many parts of GCC use arrays that are indexed by machine mode and contain the insn codes for pattern in the MD file that perform a given |