diff options
author | dann frazier <dannf@debian.org> | 2014-03-12 15:51:44 -0600 |
---|---|---|
committer | Chanho Park <chanho61.park@samsung.com> | 2014-08-22 20:38:25 +0900 |
commit | 2e926c7be4f69d68064ffd62dfaa6d7013d3f9fa (patch) | |
tree | 815b9e3566aea5af83c705bfdebcab8695f191f0 | |
parent | ed53f623e77a450a97b9980637d57d3100412a1c (diff) | |
download | ltrace-2e926c7be4f69d68064ffd62dfaa6d7013d3f9fa.tar.gz ltrace-2e926c7be4f69d68064ffd62dfaa6d7013d3f9fa.tar.bz2 ltrace-2e926c7be4f69d68064ffd62dfaa6d7013d3f9fa.zip |
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.c | 1 |
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" |