##// END OF EJS Templates
Include inttypes.h instead of stdint.h (fixes issue299)...
Thomas Arendsen Hein -
r2543:860e9c83 default
parent child Browse files
Show More
@@ -38,7 +38,7 b' static uint32_t htonl(uint32_t x)'
38 #else
38 #else
39 #include <sys/types.h>
39 #include <sys/types.h>
40 #include <arpa/inet.h>
40 #include <arpa/inet.h>
41 #include <stdint.h>
41 #include <inttypes.h>
42 #endif
42 #endif
43
43
44 struct line {
44 struct line {
@@ -43,7 +43,7 b' static uint32_t ntohl(uint32_t x)'
43 /* not windows */
43 /* not windows */
44 # include <sys/types.h>
44 # include <sys/types.h>
45 # include <arpa/inet.h>
45 # include <arpa/inet.h>
46 # include <stdint.h>
46 # include <inttypes.h>
47 #endif
47 #endif
48
48
49 static char mpatch_doc[] = "Efficient binary patching.";
49 static char mpatch_doc[] = "Efficient binary patching.";
General Comments 0
You need to be logged in to leave comments. Login now