##// END OF EJS Templates
xdiff: fix builds on Windows...
Matt Harbison -
r36741:1f9bbd1d default
parent child Browse files
Show More
@@ -30,6 +30,10 b''
30 30 #define XDL_SNAKE_CNT 20
31 31 #define XDL_K_HEUR 4
32 32
33 /* VC 2008 doesn't know about the inline keyword. */
34 #if defined(_MSC_VER)
35 #define inline __forceinline
36 #endif
33 37
34 38
35 39 typedef struct s_xdpsplit {
@@ -26,7 +26,6 b''
26 26 #include <ctype.h>
27 27 #include <stdio.h>
28 28 #include <stdlib.h>
29 #include <unistd.h>
30 29 #include <string.h>
31 30 #include <limits.h>
32 31
General Comments 0
You need to be logged in to leave comments. Login now