diff options
Diffstat (limited to 'src/regex/regcomp.c')
| -rw-r--r-- | src/regex/regcomp.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/regex/regcomp.c b/src/regex/regcomp.c index 8dc2aa8d..22b565b9 100644 --- a/src/regex/regcomp.c +++ b/src/regex/regcomp.c @@ -3,6 +3,9 @@ int regcomp(regex_t * restrict preg, const char * restrict pattern, int cflags) { + (void)preg; + (void)pattern; + (void)cflags; return 0; } @@ -10,4 +13,3 @@ int regcomp(regex_t * restrict preg, const char * restrict pattern, int cflags) /* POSIX(2) */ - |
