From 5d7f5bc8ee178588194cb6acc2e0ceb6ff926d72 Mon Sep 17 00:00:00 2001 From: Jeff Muizelaar Date: Wed, 2 Nov 2011 18:49:58 -0400 Subject: [PATCH] Add definitions of INT64_MIN and INT64_MAX --- pixman/pixman-compiler.h | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pixman/pixman-compiler.h b/pixman/pixman-compiler.h index fe2a613..5b568e1 100644 --- a/pixman/pixman-compiler.h +++ b/pixman/pixman-compiler.h @@ -48,6 +48,15 @@ # define UINT32_MAX (4294967295U) #endif +#ifndef INT64_MIN +# define INT64_MIN (-9223372036854775807-1) +#endif + +#ifndef INT64_MAX +# define INT64_MAX (9223372036854775807) +#endif + + #ifndef M_PI # define M_PI 3.14159265358979323846 #endif -- 2.7.4