diff options
author | Florian Weimer <fweimer@redhat.com> | 2025-03-12 11:10:14 +0100 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2025-03-12 11:10:14 +0100 |
commit | 6e30efe570f1ba135747c6d8f4004e78cd24c49c (patch) | |
tree | 86f640fd04a6e96e4f40ad57a874f91e98abefe4 | |
parent | 1ec411f7aec1bb7fb0992c8e23a42cea306305aa (diff) | |
download | glibc-6e30efe570f1ba135747c6d8f4004e78cd24c49c.zip glibc-6e30efe570f1ba135747c6d8f4004e78cd24c49c.tar.gz glibc-6e30efe570f1ba135747c6d8f4004e78cd24c49c.tar.bz2 |
nptl: Include <stdbool.h> in tst-pthread_gettid_np.c
The test uses the while (true) construct.
-rw-r--r-- | nptl/tst-pthread_gettid_np.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/nptl/tst-pthread_gettid_np.c b/nptl/tst-pthread_gettid_np.c index 6a98d86..ced4291 100644 --- a/nptl/tst-pthread_gettid_np.c +++ b/nptl/tst-pthread_gettid_np.c @@ -20,6 +20,7 @@ #include <pthread.h> #include <sched.h> #include <signal.h> +#include <stdbool.h> #include <support/check.h> #include <support/xthread.h> #include <unistd.h> |