446cf2
commit 4f4bd9e47ba98ccfeeaa8c600c0b0c8bbabcebb3
446cf2
Author: Matheus Castanho <msc@linux.ibm.com>
446cf2
Date:   Fri Dec 4 09:48:56 2020 -0300
446cf2
446cf2
    elf: Add missing <stddef.h> header to elf/dl-hwcaps.h
446cf2
    
446cf2
    The lack of this header makes size_t unavailable on builds configured
446cf2
    with --disable-tunables, causing compilation errors.
446cf2
446cf2
diff --git a/elf/dl-hwcaps.h b/elf/dl-hwcaps.h
446cf2
index 769ecab3f886c6c4..9a34088c17e97d7f 100644
446cf2
--- a/elf/dl-hwcaps.h
446cf2
+++ b/elf/dl-hwcaps.h
446cf2
@@ -20,6 +20,7 @@
446cf2
 #define _DL_HWCAPS_H
446cf2
 
446cf2
 #include <stdint.h>
446cf2
+#include <stddef.h>
446cf2
 
446cf2
 #include <elf/dl-tunables.h>
446cf2