aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordann frazier <dannf@debian.org>2014-03-12 15:51:44 -0600
committerMohamad Ayyash <mkayyash@google.com>2014-04-04 19:52:40 -0700
commit2e8ee3bb400006df046e432bc9dde1c0ce12b831 (patch)
tree738d2cf7cb665448cd17a5d0ce950e473b7e4ee9
parent295b98e1da0da61d5318e00b179886ed1a209a94 (diff)
downloadltrace-2e8ee3bb400006df046e432bc9dde1c0ce12b831.tar.gz
add missing <stdint.h> include
aarch64's fetch.c uses the uintptr_t typedef defined by stdint.h without including it. This doesn't currently cause a build failure because stdint.h is indirectly included via proc.h. Signed-off-by: dann frazier <dannf@debian.org>
-rw-r--r--sysdeps/linux-gnu/aarch64/fetch.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sysdeps/linux-gnu/aarch64/fetch.c b/sysdeps/linux-gnu/aarch64/fetch.c
index 8779f03..2744df0 100644
--- a/sysdeps/linux-gnu/aarch64/fetch.c
+++ b/sysdeps/linux-gnu/aarch64/fetch.c
@@ -22,6 +22,7 @@
#include <asm/ptrace.h>
#include <stdlib.h>
#include <string.h>
+#include <stdint.h>
#include "fetch.h"
#include "proc.h"