From 8af184c34107966bdbab60f16edfc56ff3e702cd Mon Sep 17 00:00:00 2001 From: Stefan Lankes Date: Mon, 29 Jun 2015 09:58:32 +0200 Subject: [PATCH] use a more usual definition of int64_t & uint64_t --- hermit/arch/x86/include/asm/stddef.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hermit/arch/x86/include/asm/stddef.h b/hermit/arch/x86/include/asm/stddef.h index 90dd7dc86..b95f5f1c7 100644 --- a/hermit/arch/x86/include/asm/stddef.h +++ b/hermit/arch/x86/include/asm/stddef.h @@ -69,9 +69,9 @@ typedef long long off_t; #endif /// Unsigned 64 bit integer -typedef unsigned long long uint64_t; +typedef unsigned long uint64_t; /// Signed 64 bit integer -typedef long long int64_t; +typedef long int64_t; /// Unsigned 32 bit integer typedef unsigned int uint32_t; /// Signed 32 bit integer