diff options
author | Xin LI <delphij@FreeBSD.org> | 2021-04-19 02:46:19 +0000 |
---|---|---|
committer | Xin LI <delphij@FreeBSD.org> | 2021-04-19 02:46:19 +0000 |
commit | 2235c7feac959bcc9ddfd6a2bc6be32102b1f84c (patch) | |
tree | 725c892a383c6f32d4cd96301ff44db5648a4c6a /contrib/less/regexp.h | |
parent | 8d9fefe64334818a27812658bf9efd0371fbc77c (diff) | |
parent | 1737d9dd586fd32916293643b7b06c088f8c22e7 (diff) |
Diffstat (limited to 'contrib/less/regexp.h')
-rw-r--r-- | contrib/less/regexp.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/contrib/less/regexp.h b/contrib/less/regexp.h index bcef6d1ebc77..283ff2aad6b7 100644 --- a/contrib/less/regexp.h +++ b/contrib/less/regexp.h @@ -10,13 +10,13 @@ #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. */ + 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; #if defined(__STDC__) || defined(__cplusplus) |