We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a5c39f commit aa26153Copy full SHA for aa26153
2 files changed
src/version.c
@@ -695,6 +695,8 @@ static char *(features[]) =
695
696
static int included_patches[] =
697
{ /* Add new patch number below this line */
698
+/**/
699
+ 1420,
700
/**/
701
1419,
702
src/xdiff/xmacros.h
@@ -24,7 +24,11 @@
24
#define XMACROS_H
25
26
27
-
+#ifdef __hpux
28
+# ifndef SIZE_MAX
29
+# define SIZE_MAX ((size_t)(-1))
30
+# endif
31
+#endif
32
33
#define XDL_MIN(a, b) ((a) < (b) ? (a): (b))
34
#define XDL_MAX(a, b) ((a) > (b) ? (a): (b))
0 commit comments