diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-07-13 10:40:47 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-07-13 10:40:47 +0000 |
commit | ceb27555a1f637c048c7ec65a01f8122c3e79bf3 (patch) | |
tree | 22f0e0977687947da81e7238c80da8c5b9587728 /linuxthreads | |
parent | b1209f90659953782d856a77819be13e51ef5b5e (diff) | |
download | glibc-ceb27555a1f637c048c7ec65a01f8122c3e79bf3.tar.gz glibc-ceb27555a1f637c048c7ec65a01f8122c3e79bf3.tar.xz glibc-ceb27555a1f637c048c7ec65a01f8122c3e79bf3.zip |
Update.
1998-07-11 Andreas Jaeger <aj@arthur.rhein-neckar.de> * Examples/ex6.c: Include <unistd.h> for usleep.
Diffstat (limited to 'linuxthreads')
-rw-r--r-- | linuxthreads/ChangeLog | 4 | ||||
-rw-r--r-- | linuxthreads/Examples/ex6.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/linuxthreads/ChangeLog b/linuxthreads/ChangeLog index aef77ed4bb..fb309c7ab9 100644 --- a/linuxthreads/ChangeLog +++ b/linuxthreads/ChangeLog @@ -1,3 +1,7 @@ +1998-07-11 Andreas Jaeger <aj@arthur.rhein-neckar.de> + + * Examples/ex6.c: Include <unistd.h> for usleep. + 1998-06-13 11:04 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * Examples/ex4.c (main): Use exit, not pthread_exit. diff --git a/linuxthreads/Examples/ex6.c b/linuxthreads/Examples/ex6.c index 32621d33df..7853376394 100644 --- a/linuxthreads/Examples/ex6.c +++ b/linuxthreads/Examples/ex6.c @@ -2,6 +2,7 @@ #include <stdio.h> #include <string.h> #include <pthread.h> +#include <unistd.h> void * test_thread (void *v_param) |