From: Georg Brandl Date: Sat, 31 Jul 2010 09:37:03 +0000 (+0000) Subject: Copy Sun-specific inclusion of from 2.7 maint to trunk; it seems to not... X-Git-Tag: v3.2a1~12 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ca9400f0519261a0d8a282ff1dcaadaddf00fd64;p=python Copy Sun-specific inclusion of from 2.7 maint to trunk; it seems to not have been merged to py3k. --- diff --git a/Modules/_ctypes/ctypes.h b/Modules/_ctypes/ctypes.h index e0bad07953..0af5fa1ddf 100644 --- a/Modules/_ctypes/ctypes.h +++ b/Modules/_ctypes/ctypes.h @@ -1,3 +1,7 @@ +#if defined (__SVR4) && defined (__sun) +# include +#endif + #ifndef MS_WIN32 #define max(a, b) ((a) > (b) ? (a) : (b)) #define min(a, b) ((a) < (b) ? (a) : (b))