From eb3beca8d4a1c5073992d3f8a30d4e87e4f29430 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 24 Dec 2011 03:03:42 +0000 Subject: replace u_int64_t with cc99's uint64_t as suggested by Nicholas Bishop. --- source/blender/blenloader/BLO_sys_types.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'source/blender/blenloader/BLO_sys_types.h') diff --git a/source/blender/blenloader/BLO_sys_types.h b/source/blender/blenloader/BLO_sys_types.h index e7f7a7e23bc..800ae834b59 100644 --- a/source/blender/blenloader/BLO_sys_types.h +++ b/source/blender/blenloader/BLO_sys_types.h @@ -86,6 +86,14 @@ typedef unsigned long uintptr_t; /* Linux-i386, Linux-Alpha, Linux-ppc */ #include +/* XXX */ +#ifndef uint64_t +typedef uint8_t u_int8_t; +typedef uint16_t u_int16_t; +typedef uint32_t u_int32_t; +typedef uint64_t u_int64_t; +#endif + #elif defined (__APPLE__) #include -- cgit v1.2.3