summaryrefslogtreecommitdiff
path: root/gas/as.h
diff options
context:
space:
mode:
authorAaron W. LaFramboise <aaronavay62@aaronwl.com>2005-03-30 02:55:13 +0000
committerAaron W. LaFramboise <aaronavay62@aaronwl.com>2005-03-30 02:55:13 +0000
commite8a38df5d8d2502c3d3b3cd4054019d8d5748a90 (patch)
tree385a7d9222da45ab84094c0eabdbfb3263b22f01 /gas/as.h
parentefa9bda48249988ac6d0459f5331b73e0d43339e (diff)
* 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.h21
1 files changed, 12 insertions, 9 deletions
diff --git a/gas/as.h b/gas/as.h
index 3c764f5573..cbd0472119 100644
--- a/gas/as.h
+++ b/gas/as.h
@@ -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. */