]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
005-06-17 Ulrich Drepper <drepper@redhat.com>
authorRoland McGrath <roland@gnu.org>
Mon, 18 Jul 2005 03:37:20 +0000 (03:37 +0000)
committerRoland McGrath <roland@gnu.org>
Mon, 18 Jul 2005 03:37:20 +0000 (03:37 +0000)
[BZ #1106]
* sysdeps/posix/sigignore.c: Include <string.h> to tell the compiler
to use __GI_memset.
* sysdeps/posix/signal.c: Likewise.
* sysdeps/posix/sigset.c: Likewise.
* sysdeps/posix/sysv_signal.c: Likewise.
* sysdeps/unix/sysv/linux/sleep.c: Likewise.
* sysdeps/unix/sysv/linux/sysctl.c: Likewise.
* sysdeps/unix/sysv/linux/system.c: Likewise.

sysdeps/posix/sigignore.c
sysdeps/posix/signal.c
sysdeps/posix/sigset.c
sysdeps/posix/sysv_signal.c
sysdeps/unix/sysv/linux/sleep.c
sysdeps/unix/sysv/linux/sysctl.c
sysdeps/unix/sysv/linux/system.c

index 361a19e0dcb1c28c45ca546cd34774ef14287549..4fff563197cb4ac8489262d2b2beb56105f2c3fc 100644 (file)
@@ -22,6 +22,8 @@
 #define __need_NULL
 #include <stddef.h>
 #include <signal.h>
+#include <string.h>    /* For the real memset prototype.  */
+
 
 int
 sigignore (sig)
index 9a8efee043a3398d97c972c9add6c43db8244f2c..076d120e3568d8073861a122e35f497f078fd436 100644 (file)
@@ -19,6 +19,7 @@
 
 #include <errno.h>
 #include <signal.h>
+#include <string.h>    /* For the real memset prototype.  */
 
 
 sigset_t _sigintr attribute_hidden;            /* Set by siginterrupt.  */
index 873c1cb1e61e5a6e87a7ee57830458708ecbc890..e995c73898b62eadb6e945bfe56cbea98d566f35 100644 (file)
@@ -20,6 +20,7 @@
 #define __need_NULL
 #include <stddef.h>
 #include <signal.h>
+#include <string.h>    /* For the real memset prototype.  */
 
 
 /* Set the disposition for SIG.  */
index ca2e84f3727925b16849efdc71aac737de14d94f..990805120684ead8d7d7ded0f53348c1474a6b49 100644 (file)
@@ -18,6 +18,8 @@
 
 #include <errno.h>
 #include <signal.h>
+#include <string.h>    /* For the real memset prototype.  */
+
 
 /* Tolerate non-threads versions of Posix */
 #ifndef SA_ONESHOT
index d94e4f62fd4d605d3a5f944716903c58060f3ef1..4f2b8acc554d64fbb6729bc2d3db0245f7f8082a 100644 (file)
@@ -21,6 +21,7 @@
 #include <errno.h>
 #include <time.h>
 #include <signal.h>
+#include <string.h>    /* For the real memset prototype.  */
 #include <unistd.h>
 #include <sys/param.h>
 
index 7e601acf2c113006529ecf95714658a9a119cb14..1cdeb12638b135aa485b695b9c55eefa40b864a0 100644 (file)
@@ -18,6 +18,7 @@
    02111-1307 USA.  */
 
 #include <errno.h>
+#include <string.h>    /* For the real memset prototype.  */
 #include <sys/sysctl.h>
 
 #include <sysdep.h>
index 3fdff04c22d51bc66f81ce8f1d98a6203ba31e2f..688487cb9f11d91f02f9c455fba8b5e3b38f3139 100644 (file)
@@ -18,6 +18,7 @@
 
 #include <sched.h>
 #include <signal.h>
+#include <string.h>    /* For the real memset prototype.  */
 #include <sysdep.h>
 #include <unistd.h>
 #include <sys/wait.h>