From: Kevin Koch Date: Thu, 15 Nov 2007 14:11:31 +0000 (+0000) Subject: On Windows, UINT64_MAX isn't defined; get it from k5-platform.h X-Git-Tag: krb5-1.7-alpha1~776 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=0d09d058fc13dded52eb49b6da4f000ed4dfd268;p=krb5.git On Windows, UINT64_MAX isn't defined; get it from k5-platform.h TargetVersion: 1.7 Component: krb5-libs Ticket: 5594 git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@20165 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/ccapi/common/cci_array_internal.c b/src/ccapi/common/cci_array_internal.c index 72f7f67a1..bdd939dbc 100644 --- a/src/ccapi/common/cci_array_internal.c +++ b/src/ccapi/common/cci_array_internal.c @@ -27,6 +27,10 @@ #include "cci_common.h" #include "cci_array_internal.h" +#ifdef WIN32 +#include "k5-platform.h" +#endif + /* ------------------------------------------------------------------------ */ struct cci_array_d {