diff options
author | Florian Weimer <fweimer@redhat.com> | 2024-06-17 15:14:05 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2024-06-17 15:14:05 +0200 |
commit | cb65d6610445a95f78b958af44f52746b4e36b24 (patch) | |
tree | fb9819b4c467f16dc6907a3328713e2dd18ed72a | |
parent | 6739bbb4df0e5c8f7575127c89de400669c0d050 (diff) | |
download | glibc-cb65d6610445a95f78b958af44f52746b4e36b24.zip glibc-cb65d6610445a95f78b958af44f52746b4e36b24.tar.gz glibc-cb65d6610445a95f78b958af44f52746b4e36b24.tar.bz2 |
support: Include <stdlib.h> for atoi use in support_wait_for_thread_exit
-rw-r--r-- | support/support_wait_for_thread_exit.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/support/support_wait_for_thread_exit.c b/support/support_wait_for_thread_exit.c index 75d3b80..449f1fc 100644 --- a/support/support_wait_for_thread_exit.c +++ b/support/support_wait_for_thread_exit.c @@ -18,6 +18,7 @@ #include <dirent.h> #include <errno.h> +#include <stdlib.h> #include <string.h> #include <support/check.h> #include <support/support.h> |