diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-11-30 14:35:54 +0100 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-11-30 14:35:54 +0100 |
commit | 3c7c5117826816021f9d3f352f49e0dd0236cbad (patch) | |
tree | bc806f0a1a3dc80a59b77d48dcf3b5491a353a9d | |
parent | e49c3c5d7a553040948a20b982387a097dc1eb2c (diff) | |
download | glibc-3c7c5117826816021f9d3f352f49e0dd0236cbad.tar.gz glibc-3c7c5117826816021f9d3f352f49e0dd0236cbad.tar.xz glibc-3c7c5117826816021f9d3f352f49e0dd0236cbad.zip |
elf: Include <stdint.h> in tst-tls20.c
The test uses standard integer types.
-rw-r--r-- | elf/tst-tls20.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/elf/tst-tls20.c b/elf/tst-tls20.c index 831c3336c9..18067e6b0a 100644 --- a/elf/tst-tls20.c +++ b/elf/tst-tls20.c @@ -19,6 +19,7 @@ #include <array_length.h> #include <dlfcn.h> #include <pthread.h> +#include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <support/check.h> |