summaryrefslogtreecommitdiff
path: root/bfd/sysdep.h
diff options
context:
space:
mode:
authorAaron W. LaFramboise <aaronavay62@aaronwl.com>2005-03-30 02:46:25 +0000
committerAaron W. LaFramboise <aaronavay62@aaronwl.com>2005-03-30 02:46:25 +0000
commit0977ed3106897e56c97253e34b2fafb54a69d40d (patch)
tree30bedc8efb763f90617e4dadc63f35e3f9cb0dc7 /bfd/sysdep.h
parent653cd739ce568c69eaabf177614b09ac1ed752b4 (diff)
downloadbinutils-redhat-0977ed3106897e56c97253e34b2fafb54a69d40d.tar.gz
* configure.in: Check for ffs decl and alphabetize.
* config.in: Regenerate. * configure: Regenerate. * sysdep.h [NEED_DECLARATION_FFS] (ffs): Prototype and alphabetize.
Diffstat (limited to 'bfd/sysdep.h')
-rw-r--r--bfd/sysdep.h20
1 files changed, 12 insertions, 8 deletions
diff --git a/bfd/sysdep.h b/bfd/sysdep.h
index 195447056a..e94491d984 100644
--- a/bfd/sysdep.h
+++ b/bfd/sysdep.h
@@ -105,8 +105,16 @@ extern char *strrchr ();
#include "filenames.h"
-#ifdef NEED_DECLARATION_STRSTR
-extern char *strstr ();
+#ifdef NEED_DECLARATION_FFS
+extern int ffs (int);
+#endif
+
+#ifdef NEED_DECLARATION_FREE
+extern void free ();
+#endif
+
+#ifdef NEED_DECLARATION_GETENV
+extern char *getenv ();
#endif
#ifdef NEED_DECLARATION_MALLOC
@@ -117,12 +125,8 @@ extern PTR malloc ();
extern PTR realloc ();
#endif
-#ifdef NEED_DECLARATION_FREE
-extern void free ();
-#endif
-
-#ifdef NEED_DECLARATION_GETENV
-extern char *getenv ();
+#ifdef NEED_DECLARATION_STRSTR
+extern char *strstr ();
#endif
/* Define offsetof for those systems which lack it */