Commit 6564e475 by Brendan Kehoe Committed by Jeff Law

libio.h (__P): Name its arg `p' instead of `params'.

        * libio.h (__P): Name its arg `p' instead of `params'.
        Avoids problems with an unchanged Solaris math.h header.
Bring over from devo.

From-SVN: r17043
parent fc50a8b9
...@@ -46,10 +46,19 @@ Tue Nov 11 01:40:17 1997 Oleg Krivosheev <kriol@fnal.gov> ...@@ -46,10 +46,19 @@ Tue Nov 11 01:40:17 1997 Oleg Krivosheev <kriol@fnal.gov>
* iomanip.h: Fix guiding decls. * iomanip.h: Fix guiding decls.
1997-11-05 Brendan Kehoe <brendan@lisa.cygnus.com>
* libio.h (__P): Name its arg `p' instead of `params'.
Avoids problems with an unchanged Solaris math.h header.
Wed Oct 29 23:01:47 1997 Jason Merrill <jason@yorick.cygnus.com> Wed Oct 29 23:01:47 1997 Jason Merrill <jason@yorick.cygnus.com>
* gen-params: Override NULL. * gen-params: Override NULL.
1997-10-27 03:53 Ulrich Drepper <drepper@cygnus.com>
* stdio-lock.h: Removed. Was never needed.
Wed Oct 22 19:19:32 1997 H.J. Lu (hjl@gnu.ai.mit.edu) Wed Oct 22 19:19:32 1997 H.J. Lu (hjl@gnu.ai.mit.edu)
* libio.h (_IO_LOCK_T): Handle glibc 2 when _IO_MTSAFE_IO is * libio.h (_IO_LOCK_T): Handle glibc 2 when _IO_MTSAFE_IO is
...@@ -112,7 +121,7 @@ Sun Sep 28 12:04:21 1997 Jason Merrill <jason@yorick.cygnus.com> ...@@ -112,7 +121,7 @@ Sun Sep 28 12:04:21 1997 Jason Merrill <jason@yorick.cygnus.com>
* libio.h: Don't use _IO_LOCK_T if it's not defined. * libio.h: Don't use _IO_LOCK_T if it's not defined.
Fri Sep 26 20:56:41 1997 Ulrich Drepper <drepper@rtl.cygnus.com> Fri Sep 26 20:56:41 1997
Based on a patch by H.J. Lu (hjl@gnu.ai.mit.edu). Based on a patch by H.J. Lu (hjl@gnu.ai.mit.edu).
...@@ -152,7 +161,7 @@ Fri Sep 26 20:56:41 1997 Ulrich Drepper <drepper@rtl.cygnus.com> ...@@ -152,7 +161,7 @@ Fri Sep 26 20:56:41 1997 Ulrich Drepper <drepper@rtl.cygnus.com>
* tests/tFile.cc (tempfile): Fix a typo. * tests/tFile.cc (tempfile): Fix a typo.
Fri Sep 19 11:52:25 1997 Jim Wilson <wilson@cygnus.com> 1997-09-19 11:52 Jim Wilson <wilson@cygnus.com>
* Makefile.in (LIBIO_OBJECTS): Depend on _G_CONFIG_H. * Makefile.in (LIBIO_OBJECTS): Depend on _G_CONFIG_H.
...@@ -165,7 +174,6 @@ Fri Sep 19 11:52:25 1997 Jim Wilson <wilson@cygnus.com> ...@@ -165,7 +174,6 @@ Fri Sep 19 11:52:25 1997 Jim Wilson <wilson@cygnus.com>
1997-09-17 02:50 Ulrich Drepper <drepper@cygnus.com> 1997-09-17 02:50 Ulrich Drepper <drepper@cygnus.com>
* libioP.h: Define __set_errno if not already defined. * libioP.h: Define __set_errno if not already defined.
* fileops.c: Don't try to define __set_errno, it's already defined.
1997-09-15 02:37 Ulrich Drepper <drepper@cygnus.com> 1997-09-15 02:37 Ulrich Drepper <drepper@cygnus.com>
...@@ -2357,5 +2365,3 @@ Tue Aug 17 17:34:24 1993 Per Bothner (bothner@kalessin.cygnus.com) ...@@ -2357,5 +2365,3 @@ Tue Aug 17 17:34:24 1993 Per Bothner (bothner@kalessin.cygnus.com)
New directory. Based on old libg++/iostream code, New directory. Based on old libg++/iostream code,
but extensively re-written. but extensively re-written.
...@@ -55,9 +55,9 @@ ...@@ -55,9 +55,9 @@
# include <sys/cdefs.h> # include <sys/cdefs.h>
# else # else
# ifdef __STDC__ # ifdef __STDC__
# define __P(protos) protos # define __P(p) p
# else # else
# define __P(protos) () # define __P(p) ()
# endif # endif
# endif # endif
#endif /*!__P*/ #endif /*!__P*/
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment