Kaydet (Commit) 7f1de832 authored tarafından Guido van Rossum's avatar Guido van Rossum

Tiny patch by Mark Hammond to avoid sys/types.h if we don't have it

(for Windows/CE).
üst 8779f648
......@@ -38,9 +38,11 @@ PERFORMANCE OF THIS SOFTWARE.
#ifdef STDC_HEADERS
#include <stddef.h>
#else
#else /* !STDC_HEADERS */
#ifndef DONT_HAVE_SYS_TYPES_H
#include <sys/types.h> /* For size_t */
#endif
#endif /* DONT_HAVE_SYS_TYPES_H */
#endif /* !STDC_HEADERS */
struct arrayobject; /* Forward */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment