##// END OF EJS Templates
Fixed conditional include of stdint.h for windows/msvc6/python2.3 environment.
Shun-ichi GOTO -
r2483:5583d5ef default
parent child Browse files
Show More
@@ -10,7 +10,6 b''
10 */
10 */
11
11
12 #include <Python.h>
12 #include <Python.h>
13 #include <stdint.h>
14 #include <stdlib.h>
13 #include <stdlib.h>
15 #include <string.h>
14 #include <string.h>
16
15
@@ -39,6 +38,7 b' static uint32_t htonl(uint32_t x)'
39 #else
38 #else
40 #include <sys/types.h>
39 #include <sys/types.h>
41 #include <arpa/inet.h>
40 #include <arpa/inet.h>
41 #include <stdint.h>
42 #endif
42 #endif
43
43
44 struct line {
44 struct line {
General Comments 0
You need to be logged in to leave comments. Login now