Update.
authorAndreas Jaeger <aj@suse.de>
Wed, 5 Jul 2000 15:38:00 +0000 (15:38 +0000)
committerAndreas Jaeger <aj@suse.de>
Wed, 5 Jul 2000 15:38:00 +0000 (15:38 +0000)
* sysdeps/mips/fpu_control.h: Fix type of fpu_control_t.
(_FPU_GETCW): Remove extra colon.
Patch by Ralf Baechle <ralf@uni-koblenz.de>.

ChangeLog
sysdeps/generic/memchr.c
sysdeps/generic/rawmemchr.c
sysdeps/generic/strchr.c
sysdeps/generic/strchrnul.c
sysdeps/generic/strlen.c
sysdeps/mips/fpu_control.h

index cc7c2e5..3d39869 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2000-07-05  Andreas Jaeger  <aj@suse.de>
 
+       * sysdeps/mips/fpu_control.h: Fix type of fpu_control_t.
+       (_FPU_GETCW): Remove extra colon.
+       Patch by Ralf Baechle <ralf@uni-koblenz.de>.
+
        * posix/fnmatch_loop.c (FCT): Only declare len if
        !WIDE_CHAR_VERSION to silence GCC.
 
@@ -60,7 +64,7 @@
 2000-07-03  Greg McGary  <greg@mcgary.org>
 
        * sysdeps/i386/bits/setjmp.h (PUSH_SIGNAL_MASK): Fix typo.
-       
+
        * csu/Makefile (extra-objs, install-lib): Add BP objects conditionally.
        ($(objpfx)b$(start-installed-name)): Add non-elf rule.
 
index 9ea9ce2..60bd8c6 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 1993, 1996, 1997, 1999 Free Software Foundation, Inc.
+/* Copyright (C) 1991,93,96,97,99,2000 Free Software Foundation, Inc.
    Based on strlen implementation by Torbjorn Granlund (tege@sics.se),
    with help from Dan Sahlin (dan@sics.se) and
    commentary by Jim Blandy (jimb@ai.mit.edu);
@@ -34,6 +34,7 @@
 #if defined (_LIBC)
 # include <string.h>
 # include <memcopy.h>
+# include <stdlib.h>
 #else
 # define reg_char char
 #endif
index e874dca..2e1d807 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 1993, 1996, 1997, 1999 Free Software Foundation, Inc.
+/* Copyright (C) 1991,93,96,97,99,2000 Free Software Foundation, Inc.
    Based on strlen implementation by Torbjorn Granlund (tege@sics.se),
    with help from Dan Sahlin (dan@sics.se) and
    commentary by Jim Blandy (jimb@ai.mit.edu);
@@ -34,6 +34,7 @@
 #if defined (_LIBC)
 # include <string.h>
 # include <memcopy.h>
+# include <stdlib.h>
 #else
 # define reg_char char
 #endif
index 1103906..f9e6344 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 93, 94, 95, 96, 97, 99 Free Software Foundation, Inc.
+/* Copyright (C) 1991,93,94,95,96,97,99,2000 Free Software Foundation, Inc.
    Based on strlen implementation by Torbjorn Granlund (tege@sics.se),
    with help from Dan Sahlin (dan@sics.se) and
    bug fix and commentary by Jim Blandy (jimb@ai.mit.edu);
@@ -22,6 +22,7 @@
 
 #include <string.h>
 #include <memcopy.h>
+#include <stdlib.h>
 
 #undef strchr
 
index b88fecb..f5e8d84 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 93, 94, 95, 96, 97, 99 Free Software Foundation, Inc.
+/* Copyright (C) 1991,93,94,95,96,97,99,2000 Free Software Foundation, Inc.
    Based on strlen implementation by Torbjorn Granlund (tege@sics.se),
    with help from Dan Sahlin (dan@sics.se) and
    bug fix and commentary by Jim Blandy (jimb@ai.mit.edu);
@@ -22,6 +22,7 @@
 
 #include <string.h>
 #include <memcopy.h>
+#include <stdlib.h>
 
 #undef __strchrnul
 #undef strchrnul
index b031df8..8652fd4 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 1993, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1991, 1993, 1997, 2000 Free Software Foundation, Inc.
    Written by Torbjorn Granlund (tege@sics.se),
    with help from Dan Sahlin (dan@sics.se);
    commentary by Jim Blandy (jimb@ai.mit.edu).
@@ -19,6 +19,7 @@
    Boston, MA 02111-1307, USA.  */
 
 #include <string.h>
+#include <stdlib.h>
 
 #undef strlen
 
index 789a614..c5c83e0 100644 (file)
@@ -1,5 +1,5 @@
 /* FPU control word bits.  Mips version.
-   Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
+   Copyright (C) 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Olaf Flebbe and Ralf Baechle.
 
 #define _FPU_IEEE     0x00000F80
 
 /* Type of the control word.  */
-typedef unsigned int fpu_control_t __attribute__ ((__mode__ (__HI__)));
+typedef unsigned int fpu_control_t __attribute__ ((__mode__ (__SI__)));
 
 /* Macros for accessing the hardware control word.  */
-#define _FPU_GETCW(cw) __asm__ ("cfc1 %0,$31" : "=r" (cw) : )
+#define _FPU_GETCW(cw) __asm__ ("cfc1 %0,$31" : "=r" (cw))
 #define _FPU_SETCW(cw) __asm__ ("ctc1 %0,$31" : : "r" (cw))
 
 /* Default control word set at startup.  */