diff options
author | Matheus Castanho <msc@linux.ibm.com> | 2020-12-04 09:48:56 -0300 |
---|---|---|
committer | Matheus Castanho <msc@linux.ibm.com> | 2020-12-04 09:52:02 -0300 |
commit | 4f4bd9e47ba98ccfeeaa8c600c0b0c8bbabcebb3 (patch) | |
tree | 3a8edf945a2e20e10a992eadc907bab473c02750 /elf/dl-hwcaps.h | |
parent | 135ca0a7cd08a9e86e6e0dabe0ef560a4bdac9be (diff) | |
download | glibc-4f4bd9e47ba98ccfeeaa8c600c0b0c8bbabcebb3.tar.gz glibc-4f4bd9e47ba98ccfeeaa8c600c0b0c8bbabcebb3.tar.xz glibc-4f4bd9e47ba98ccfeeaa8c600c0b0c8bbabcebb3.zip |
elf: Add missing <stddef.h> header to elf/dl-hwcaps.h
The lack of this header makes size_t unavailable on builds configured with --disable-tunables, causing compilation errors.
Diffstat (limited to 'elf/dl-hwcaps.h')
-rw-r--r-- | elf/dl-hwcaps.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/elf/dl-hwcaps.h b/elf/dl-hwcaps.h index e6fcac6edc..147dc3d2a8 100644 --- a/elf/dl-hwcaps.h +++ b/elf/dl-hwcaps.h @@ -20,6 +20,7 @@ #define _DL_HWCAPS_H #include <stdint.h> +#include <stddef.h> #include <elf/dl-tunables.h> |