diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-03-18 16:38:26 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-03-18 16:38:26 +0100 |
commit | 9a37922ee049c2a12ba9d9457f7711ecd9813c88 (patch) | |
tree | 0343770bb825463a00a2e4199921cc40598db4b2 | |
parent | dd28d4ba978abd9f6da0a223614d7f0d33b305a7 (diff) | |
download | glibc-9a37922ee049c2a12ba9d9457f7711ecd9813c88.tar.gz glibc-9a37922ee049c2a12ba9d9457f7711ecd9813c88.tar.xz glibc-9a37922ee049c2a12ba9d9457f7711ecd9813c88.zip |
hurd: Add missing include
* sysdeps/mach/hurd/cthreads.c: Include <cthreads.h>.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | sysdeps/mach/hurd/cthreads.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index b9f90147f9..c0074a6c3b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2018-03-18 Samuel Thibault <samuel.thibault@ens-lyon.org> + + * sysdeps/mach/hurd/cthreads.c: Include <cthreads.h>. + 2018-03-17 Samuel Thibault <samuel.thibault@ens-lyon.org> * hurd/hurdsig.c: Include <pthread.h>. diff --git a/sysdeps/mach/hurd/cthreads.c b/sysdeps/mach/hurd/cthreads.c index 35689307b4..585650522a 100644 --- a/sysdeps/mach/hurd/cthreads.c +++ b/sysdeps/mach/hurd/cthreads.c @@ -18,6 +18,7 @@ #include <libc-lock.h> #include <errno.h> #include <stdlib.h> +#include <cthreads.h> /* This serves as stub "self" pointer for libc locks when TLS is not initialized yet. */ |