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.
This commit is contained in:
Matheus Castanho 2020-12-04 09:48:56 -03:00
parent 135ca0a7cd
commit 4f4bd9e47b
1 changed files with 1 additions and 0 deletions

View File

@ -20,6 +20,7 @@
#define _DL_HWCAPS_H
#include <stdint.h>
#include <stddef.h>
#include <elf/dl-tunables.h>