summaryrefslogtreecommitdiff
path: root/src/regex/regcomp.c
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2019-02-09 16:55:52 -0500
committerJakob Kaivo <jkk@ung.org>2019-02-09 16:55:52 -0500
commit7958762d8b94f0aa3babe1d5a8cf0cd57eb3b88f (patch)
tree74100622b4ff8ac5b72cf2c4d4903f840f3b1c11 /src/regex/regcomp.c
parent0f7495e05b3367fa5863781bb3dcd3871405a73e (diff)
merge POSIX.2 identifiers
Diffstat (limited to 'src/regex/regcomp.c')
-rw-r--r--src/regex/regcomp.c12
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)
+*/
+