]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Changes for Mac
authorGuido van Rossum <guido@python.org>
Fri, 19 Aug 1994 12:01:32 +0000 (12:01 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 19 Aug 1994 12:01:32 +0000 (12:01 +0000)
Modules/arraymodule.c

index 4b89ad9153665fcb928bd065f4dec95b563f7828..0dfe4f617349ad8d6d1e1cfee46c0c450070b5d2 100644 (file)
@@ -30,7 +30,11 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 #include "allobjects.h"
 #include "modsupport.h"
 #include "ceval.h"
+#ifdef STDC_HEADERS
+#include <stddef.h>
+#else
 #include <sys/types.h>         /* For size_t */
+#endif
 
 struct arrayobject; /* Forward */