diff options
author | Aaron W. LaFramboise <aaronavay62@aaronwl.com> | 2005-03-30 02:55:13 +0000 |
---|---|---|
committer | Aaron W. LaFramboise <aaronavay62@aaronwl.com> | 2005-03-30 02:55:13 +0000 |
commit | e8a38df5d8d2502c3d3b3cd4054019d8d5748a90 (patch) | |
tree | 385a7d9222da45ab84094c0eabdbfb3263b22f01 /gas/as.h | |
parent | efa9bda48249988ac6d0459f5331b73e0d43339e (diff) | |
download | gdb-e8a38df5d8d2502c3d3b3cd4054019d8d5748a90.zip gdb-e8a38df5d8d2502c3d3b3cd4054019d8d5748a90.tar.gz gdb-e8a38df5d8d2502c3d3b3cd4054019d8d5748a90.tar.bz2 |
* as.h [NEED_DECLARATION_FFS] (ffs): Prototype and alphabetize.
* config.in: Regenerate.
* configure: Regenerate.
* configure.in: Check for ffs decl and alphabetize.
Diffstat (limited to 'gas/as.h')
-rw-r--r-- | gas/as.h | 21 |
1 files changed, 12 insertions, 9 deletions
@@ -127,21 +127,24 @@ extern void *alloca (); #endif /* !__MWERKS__ */ /* Other stuff from config.h. */ -#ifdef NEED_DECLARATION_STRSTR -extern char *strstr (); +#ifdef NEED_DECLARATION_ENVIRON +extern char **environ; #endif -#ifdef NEED_DECLARATION_MALLOC -extern PTR malloc (); -extern PTR realloc (); +#ifdef NEED_DECLARATION_ERRNO +extern int errno; +#endif +#ifdef NEED_DECLARATION_FFS +extern int ffs (int); #endif #ifdef NEED_DECLARATION_FREE extern void free (); #endif -#ifdef NEED_DECLARATION_ERRNO -extern int errno; +#ifdef NEED_DECLARATION_MALLOC +extern PTR malloc (); +extern PTR realloc (); #endif -#ifdef NEED_DECLARATION_ENVIRON -extern char **environ; +#ifdef NEED_DECLARATION_STRSTR +extern char *strstr (); #endif /* This is needed for VMS. */ |