]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Quick fix -- define SIZEOF_LONG and SIZEOF_INT.
authorGuido van Rossum <guido@python.org>
Fri, 29 May 1998 02:53:29 +0000 (02:53 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 29 May 1998 02:53:29 +0000 (02:53 +0000)
PC/config.h

index a411ab87a7ab09b283796f1378149b966d54efff..68e9c5adfad26be4ac8c353d20435a8af8c028a4 100644 (file)
@@ -196,6 +196,10 @@ typedef int pid_t;
 #endif /* !MS_WIN32 */
 
 #ifdef MS_WIN32
+
+#define SIZEOF_INT 4
+#define SIZEOF_LONG 4
+
 /* EXPERIMENTAL FEATURE: When CHECK_IMPORT_CASE is defined, check case of
    imported modules against case of file; this causes "import String" to fail
    with a NameError exception when it finds "string.py".  Normally, you set