diff options
author | Andreas Jaeger <aj@suse.de> | 2000-06-21 10:38:25 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2000-06-21 10:38:25 +0000 |
commit | 3d8e95103261ed4d02fb8f112798f9c1d666ab10 (patch) | |
tree | 0ca8a0903bccab15a0bc6a87cb978300a8e6b480 /linuxthreads | |
parent | bdf09fab1b2097bacf7a02e32beacf964825eee6 (diff) | |
download | glibc-3d8e95103261ed4d02fb8f112798f9c1d666ab10.zip glibc-3d8e95103261ed4d02fb8f112798f9c1d666ab10.tar.gz glibc-3d8e95103261ed4d02fb8f112798f9c1d666ab10.tar.bz2 |
* sysdeps/pthread/timer_routines.c: Include <stdlib.h> for memset
prototype.
* join.c: Include <stdlib.h> for exit prototype.
* elf/vismod2.c: Include <stdlib.h> for abort prototype.
* rt/aio_suspend.c: Likewise.
2000-06-21 Andreas Jaeger <aj@suse.de>
* sysdeps/pthread/timer_routines.c: Include <stdlib.h> for memset
prototype.
* join.c: Include <stdlib.h> for exit prototype.
Diffstat (limited to 'linuxthreads')
-rw-r--r-- | linuxthreads/ChangeLog | 7 | ||||
-rw-r--r-- | linuxthreads/join.c | 1 | ||||
-rw-r--r-- | linuxthreads/sysdeps/pthread/timer_routines.c | 1 |
3 files changed, 9 insertions, 0 deletions
diff --git a/linuxthreads/ChangeLog b/linuxthreads/ChangeLog index 94446af..e81a764 100644 --- a/linuxthreads/ChangeLog +++ b/linuxthreads/ChangeLog @@ -1,3 +1,10 @@ +2000-06-21 Andreas Jaeger <aj@suse.de> + + * sysdeps/pthread/timer_routines.c: Include <stdlib.h> for memset + prototype. + + * join.c: Include <stdlib.h> for exit prototype. + 2000-06-20 Ulrich Drepper <drepper@redhat.com> * sysdeps/i386/useldt.h: Include <stdlib.h>. diff --git a/linuxthreads/join.c b/linuxthreads/join.c index adcac46..97da2df 100644 --- a/linuxthreads/join.c +++ b/linuxthreads/join.c @@ -16,6 +16,7 @@ #include <errno.h> #include <sched.h> +#include <stdlib.h> #include <unistd.h> #include "pthread.h" #include "internals.h" diff --git a/linuxthreads/sysdeps/pthread/timer_routines.c b/linuxthreads/sysdeps/pthread/timer_routines.c index 2d4e325..4e3a8fc 100644 --- a/linuxthreads/sysdeps/pthread/timer_routines.c +++ b/linuxthreads/sysdeps/pthread/timer_routines.c @@ -22,6 +22,7 @@ #include <errno.h> #include <pthread.h> #include <stddef.h> +#include <string.h> #include <sysdep.h> #include <time.h> #include <unistd.h> |