diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/aarch64/sys/procfs.h | 3 |
2 files changed, 5 insertions, 2 deletions
@@ -1,3 +1,7 @@ +2017-08-29 Szabolcs Nagy <szabolcs.nagy@arm.com> + + * sysdeps/unix/sysv/linux/aarch64/sys/procfs.h: Use __uint64_t. + 2017-08-29 Florian Weimer <fweimer@redhat.com> [BZ #22026] diff --git a/sysdeps/unix/sysv/linux/aarch64/sys/procfs.h b/sysdeps/unix/sysv/linux/aarch64/sys/procfs.h index 5c96bc5f17..44d32ca6ba 100644 --- a/sysdeps/unix/sysv/linux/aarch64/sys/procfs.h +++ b/sysdeps/unix/sysv/linux/aarch64/sys/procfs.h @@ -32,12 +32,11 @@ #include <sys/time.h> #include <sys/types.h> #include <sys/user.h> -#include <stdint.h> __BEGIN_DECLS /* Type for a general-purpose register. */ -typedef uint64_t elf_greg_t; +typedef __uint64_t elf_greg_t; /* And the whole bunch of them. We could have used `struct pt_regs' directly in the typedef, but tradition says that |