* lib/regex.h (RE_BACKSLASH_ESCAPE_IN_LISTS):
Define to 1ul so that the RE_* macros can be used in #if.
regex: pacify gcc -Wcalloc-transposed-args
* lib/regcomp.c (init_dfa, parse_bracket_exp)
(build_charclass_op):
+ * lib/regex.h (RE_BACKSLASH_ESCAPE_IN_LISTS):
+ Define to 1ul so that the RE_* macros can be used in #if.
* lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
* lib/regexec.c (get_subexp, build_trtable):
When calling calloc, put size argument last.
#ifdef __USE_GNU
/* If this bit is not set, then \ inside a bracket expression is literal.
If set, then such a \ quotes the following character. */
-# define RE_BACKSLASH_ESCAPE_IN_LISTS ((unsigned long int) 1)
+# define RE_BACKSLASH_ESCAPE_IN_LISTS 1ul
/* If this bit is not set, then + and ? are operators, and \+ and \? are
literals.