• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Aucun tag

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

GNU Binutils with patches for OS216


Commit MetaInfo

Révision60774f9f72edf3b70540892f7a5936dd4f93554b (tree)
l'heure2005-03-29 05:06:59
AuteurMark Mitchell <mark@code...>
CommiterMark Mitchell

Message de Log

* include/libiberty.h (ffs): Declare.

Change Summary

Modification

--- a/ChangeLog.csl
+++ b/ChangeLog.csl
@@ -1,5 +1,9 @@
11 2005-03-28 Mark Mitchell <mark@codesourcery.com>
22
3+ * include/libiberty.h (ffs): Declare.
4+
5+2005-03-28 Mark Mitchell <mark@codesourcery.com>
6+
37 * gdb/ser-tcp.c (net_read_prim): Use recv unconditionally.
48 (net_write_prim): Use send unconditionally.
59 * gdb/configure.ac: Do not check for send and recv.
--- a/include/libiberty.h
+++ b/include/libiberty.h
@@ -140,6 +140,13 @@ extern char *libiberty_concat_ptr;
140140
141141 extern int fdmatch PARAMS ((int fd1, int fd2));
142142
143+/* Return the position of the first bit set in the argument. */
144+/* Prototypes vary from system to system, so we only provide a
145+ prototype on systems where we know that we need it. */
146+#ifdef __MINGW32__
147+extern int ffs(int);
148+#endif
149+
143150 /* Get the working directory. The result is cached, so don't call
144151 chdir() between calls to getpwd(). */
145152