##// 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 12 #include <Python.h>
13 #include <stdint.h>
14 13 #include <stdlib.h>
15 14 #include <string.h>
16 15
@@ -39,6 +38,7 b' static uint32_t htonl(uint32_t x)'
39 38 #else
40 39 #include <sys/types.h>
41 40 #include <arpa/inet.h>
41 #include <stdint.h>
42 42 #endif
43 43
44 44 struct line {
General Comments 0
You need to be logged in to leave comments. Login now