summaryrefslogtreecommitdiff
path: root/src/regex/regexec.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/regex/regexec.c')
-rw-r--r--src/regex/regexec.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/regex/regexec.c b/src/regex/regexec.c
new file mode 100644
index 00000000..d749c257
--- /dev/null
+++ b/src/regex/regexec.c
@@ -0,0 +1,11 @@
+#include <regex.h>
+
+int regexec(const regex_t * restrict preg, const char * restrict string, size_t nmatch, regmatch_t pmatch[restrict], int eflags)
+{
+ return 0;
+}
+
+/*
+POSIX(2)
+*/
+