aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@redhat.com>2021-08-13 15:16:08 -0300
committerArnaldo Carvalho de Melo <acme@redhat.com>2021-08-20 16:40:27 -0300
commitc34b6c6cc96b9669dd22f40308ce8ba6c6b0e667 (patch)
treea9015a763ae07f41c5a86346715a2f1d557533a0
parent5e8ad60d1f33bed6c8f346d0793cd8d33844cf76 (diff)
downloaddwarves-c34b6c6cc96b9669dd22f40308ce8ba6c6b0e667.tar.gz
pahole: Add missing limits.h include to get ULLONG_MAX definition
Found while compiling on a musl libc system. Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
-rw-r--r--pahole.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/pahole.c b/pahole.c
index ebdf432..0d4ca2b 100644
--- a/pahole.c
+++ b/pahole.c
@@ -12,6 +12,7 @@
#include <dwarf.h>
#include <elfutils/version.h>
#include <inttypes.h>
+#include <limits.h>
#include <pthread.h>
#include <search.h>
#include <stdarg.h>