[AArch64] Fix procfs.h not to expose stdint.h types

Commit 39e7a5a66828a60008543db5f03f46dc7081668b added stdint.h
to sys/procfs.h, but it is included into signal.h by default and
there is code that does not expect stdint.h to be visible there,
so use __uint64_t instead of uint64_t.
This commit is contained in:
Szabolcs Nagy 2017-08-29 16:31:08 +01:00
parent 251bccfa1f
commit 16f138a49a
2 changed files with 5 additions and 2 deletions

View File

@ -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]

View File

@ -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