We have a clang-tidy complaining that uintptr_t is not provided by any
directly included header (it's only provided by a transitively included one).
* libelf/elf_begin.c: Include <stdint.h>
Signed-off-by: Paul Pluzhnikov <[email protected]>
---
libelf/elf_begin.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/libelf/elf_begin.c b/libelf/elf_begin.c
index dcaad8ee..8a49f351 100644
--- a/libelf/elf_begin.c
+++ b/libelf/elf_begin.c
@@ -38,6 +38,7 @@
#include <fcntl.h>
#include <stdbool.h>
#include <stddef.h>
+#include <stdint.h>
#include <string.h>
#include <sys/stat.h>
--
2.43.0.rc0.421.g78406f8d94-goog