diff options
Diffstat (limited to 'src/include/regex/regexp.h')
-rw-r--r-- | src/include/regex/regexp.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/include/regex/regexp.h b/src/include/regex/regexp.h index cbbb26367df..d8008190708 100644 --- a/src/include/regex/regexp.h +++ b/src/include/regex/regexp.h @@ -49,14 +49,14 @@ #define NSUBEXP 10 typedef struct regexp { - char *startp[NSUBEXP]; - char *endp[NSUBEXP]; - char regstart; /* Internal use only. */ - char reganch; /* Internal use only. */ - char *regmust; /* Internal use only. */ - int regmlen; /* Internal use only. */ - char program[1]; /* Unwarranted chumminess with compiler. */ -} regexp; + char *startp[NSUBEXP]; + char *endp[NSUBEXP]; + char regstart; /* Internal use only. */ + char reganch; /* Internal use only. */ + char *regmust; /* Internal use only. */ + int regmlen; /* Internal use only. */ + char program[1]; /* Unwarranted chumminess with compiler. */ +} regexp; /* since not all systems have cdefs.h, we'll use our own here - jolly */ |