diff options
Diffstat (limited to 'support/dfa.c')
-rw-r--r-- | support/dfa.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/support/dfa.c b/support/dfa.c index 8f34c4c1..d4ecbe9d 100644 --- a/support/dfa.c +++ b/support/dfa.c @@ -24,7 +24,12 @@ #include <assert.h> #include <ctype.h> +#ifndef VMS #include <stdint.h> +#else +#define SIZE_MAX __INT32_MAX +#define PTRDIFF_MAX __INT32_MAX +#endif #include <stdio.h> #ifndef VMS @@ -2138,7 +2143,7 @@ merge_constrained (position_set const *s1, position_set const *s2, static void merge (position_set const *s1, position_set const *s2, position_set *m) { - return merge_constrained (s1, s2, -1, m); + merge_constrained (s1, s2, -1, m); } /* Delete a position from a set. Return the nonzero constraint of the |