diff options
Diffstat (limited to 'generic/regfronts.c')
| -rw-r--r-- | generic/regfronts.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/regfronts.c b/generic/regfronts.c index 088a640..5003297 100644 --- a/generic/regfronts.c +++ b/generic/regfronts.c @@ -39,7 +39,7 @@ int regcomp( regex_t *re, - const char *str, + CONST char *str, int flags) { size_t len; @@ -61,12 +61,12 @@ regcomp( int regexec( regex_t *re, - const char *str, + CONST char *str, size_t nmatch, regmatch_t pmatch[], int flags) { - const char *start; + CONST char *start; size_t len; int f = flags; |
