From 361b583e88a260553418aaf5f5b00f31cc5ce5fb Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 30 Jun 2000 22:17:53 +0000 Subject: [PATCH] Only include for VC 6.0 and higher. --- PC/config.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/PC/config.h b/PC/config.h index 850af584b08..f057a75654b 100644 --- a/PC/config.h +++ b/PC/config.h @@ -243,7 +243,9 @@ typedef int pid_t; /* define the ANSI intptr_t type for portable use of a pointer sized integer */ +#if _MSC_VER >= 1200 /* This file only exists in VC 6.0 or higher */ #include +#endif #if defined(MS_WINDOWS) && !defined(MS_WIN64) typedef long intptr_t; #endif