summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Mitchell <mark@codesourcery.com>2005-03-28 20:26:13 +0000
committerMark Mitchell <mark@codesourcery.com>2005-03-28 20:26:13 +0000
commit6abb6b94eefb2fc60bee6d16b9c6506284ae5a85 (patch)
tree4d0c5d15e2c955313559659277d2453deef83634
parent19c7943dfb456ce9ee611faf26330cdd3547a2ba (diff)
downloadgdb-6abb6b94eefb2fc60bee6d16b9c6506284ae5a85.tar.gz
* include/libiberty.h (ffs): Declare.
-rw-r--r--include/libiberty.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/libiberty.h b/include/libiberty.h
index 4df814092c5..797339e6c37 100644
--- a/include/libiberty.h
+++ b/include/libiberty.h
@@ -140,6 +140,13 @@ extern char *libiberty_concat_ptr;
extern int fdmatch PARAMS ((int fd1, int fd2));
+/* Return the position of the first bit set in the argument. */
+/* Prototypes vary from system to system, so we only provide a
+ prototype on systems where we know that we need it. */
+#ifdef __MINGW32__
+extern int ffs(int);
+#endif
+
/* Get the working directory. The result is cached, so don't call
chdir() between calls to getpwd(). */