1
/* utility definitions */
2
#ifdef _POSIX2_RE_DUP_MAX
3
#define DUPMAX _POSIX2_RE_DUP_MAX /* xxx is this right? */
7
#define RE_INFINITY (DUPMAX + 1)
8
#define NC (CHAR_MAX - CHAR_MIN + 1)
9
typedef unsigned char uch;
11
/* switch off assertions (if not already off) if no REDEBUG */
14
#define NDEBUG /* no assertions please */
19
/* for old systems with bcopy() but no memmove() */
21
#define memmove(d, s, c) bcopy(s, d, c)