From 82b4b371721bb24f2697b5c17360380cf11aef9c Mon Sep 17 00:00:00 2001 From: Alex Smith Date: Fri, 15 Jun 2012 16:09:25 +0100 Subject: [PATCH] Added a TODO in to say that {,u}int64 should be changed to long on x86_64. --- headers/config/types.h | 1 + 1 file changed, 1 insertion(+) diff --git a/headers/config/types.h b/headers/config/types.h index f0140a01b9..8da83ecabd 100644 --- a/headers/config/types.h +++ b/headers/config/types.h @@ -22,6 +22,7 @@ typedef signed int __haiku_std_int32; typedef unsigned int __haiku_std_uint32; typedef signed long long __haiku_std_int64; typedef unsigned long long __haiku_std_uint64; + // TODO: on x86_64 these should be long typedef __haiku_std_int8 __haiku_int8; typedef __haiku_std_uint8 __haiku_uint8;