diff options
Diffstat (limited to 'src/regex/regcomp.c')
| -rw-r--r-- | src/regex/regcomp.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/regex/regcomp.c b/src/regex/regcomp.c new file mode 100644 index 00000000..9c3585b1 --- /dev/null +++ b/src/regex/regcomp.c @@ -0,0 +1,12 @@ +#include <regex.h> + +int regcomp(regex_t * restrict preg, const char * restrict pattern, int cflags) +{ + return 0; +} + + +/* +POSIX(2) +*/ + |
