diff options
author | Alan Modra <amodra@gmail.com> | 2006-06-07 11:27:58 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2006-06-07 11:27:58 +0000 |
commit | ebd1c8757cf3f32daffe2615cbb778e495ebe412 (patch) | |
tree | c676d72e3be7ae9c8f4eb3645fa3f049560a4b12 /gas/macro.c | |
parent | 9622b051cf36414e121c0c2e63c099e588801e0e (diff) | |
download | binutils-gdb-ebd1c8757cf3f32daffe2615cbb778e495ebe412.tar.gz |
remove some duplicate #include's.
Diffstat (limited to 'gas/macro.c')
-rw-r--r-- | gas/macro.c | 38 |
1 files changed, 1 insertions, 37 deletions
diff --git a/gas/macro.c b/gas/macro.c index e6e9d05ba27..67846eb2daa 100644 --- a/gas/macro.c +++ b/gas/macro.c @@ -1,6 +1,6 @@ /* macro.c - macro support for gas Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, - 2004, 2005 Free Software Foundation, Inc. + 2004, 2005, 2006 Free Software Foundation, Inc. Written by Steve and Judy Chamberlain of Cygnus Support, sac@cygnus.com @@ -22,47 +22,11 @@ Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */ -#include "config.h" - -#ifndef __GNUC__ -# if HAVE_ALLOCA_H -# include <alloca.h> -# else -# ifdef _AIX -/* Indented so that pre-ansi C compilers will ignore it, rather than - choke on it. Some versions of AIX require this to be the first - thing in the file. */ - #pragma alloca -# else -# ifndef alloca /* predefined by HP cc +Olibcalls */ -# if !defined (__STDC__) && !defined (__hpux) -extern char *alloca (); -# else -extern void *alloca (); -# endif /* __STDC__, __hpux */ -# endif /* alloca */ -# endif /* _AIX */ -# endif /* HAVE_ALLOCA_H */ -#endif /* __GNUC__ */ - -#include <stdio.h> -#ifdef HAVE_STRING_H -#include <string.h> -#else -#include <strings.h> -#endif -#ifdef HAVE_STDLIB_H -#include <stdlib.h> -#endif #include "as.h" -#include "libiberty.h" #include "safe-ctype.h" #include "sb.h" -#include "hash.h" #include "macro.h" -#include "asintl.h" - /* The routines in this file handle macro definition and expansion. They are called by gas. */ |