diff options
Diffstat (limited to 'gcc/genemit.c')
-rw-r--r-- | gcc/genemit.c | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/gcc/genemit.c b/gcc/genemit.c index dc5eca1502b..ddfaf383085 100644 --- a/gcc/genemit.c +++ b/gcc/genemit.c @@ -19,29 +19,20 @@ 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" -#ifdef HAVE_STDLIB_H -#include <stdlib.h> -#endif - static struct obstack obstack; 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)); static int max_opno; static int max_dup_opno; |