forked from pool/glibc
608ae8be41
Split up package glibc-utils. OBS-URL: https://build.opensuse.org/request/show/73636 OBS-URL: https://build.opensuse.org/package/show/Base:System/glibc?expand=0&rev=57
32 lines
685 B
Diff
32 lines
685 B
Diff
2011-06-14 Andreas Jaeger <aj@suse.de>
|
|
|
|
* pthread_rwlock_init.c: Include <string.h> for
|
|
memset declaration.
|
|
|
|
2011-06-14 Andreas Jaeger <aj@suse.de>
|
|
|
|
* sysdeps/unix/sysv/linux/check_native.c: Include <string.h> for
|
|
memset declaration.
|
|
|
|
--- a/sysdeps/unix/sysv/linux/check_native.c
|
|
+++ b/sysdeps/unix/sysv/linux/check_native.c
|
|
@@ -23,6 +23,7 @@
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
+#include <string.h>
|
|
#include <time.h>
|
|
#include <unistd.h>
|
|
#include <net/if.h>
|
|
|
|
--- a/nptl/pthread_rwlock_init.c
|
|
+++ b/nptl/pthread_rwlock_init.c
|
|
@@ -18,6 +18,7 @@
|
|
02111-1307 USA. */
|
|
|
|
#include "pthreadP.h"
|
|
+#include <string.h>
|
|
#include <kernel-features.h>
|
|
|
|
|