summaryrefslogtreecommitdiff
path: root/src/regex
diff options
context:
space:
mode:
Diffstat (limited to 'src/regex')
-rw-r--r--src/regex/regcomp.c5
-rw-r--r--src/regex/regerror.c5
-rw-r--r--src/regex/regexec.c5
-rw-r--r--src/regex/regfree.c5
4 files changed, 20 insertions, 0 deletions
diff --git a/src/regex/regcomp.c b/src/regex/regcomp.c
index f3d55c7d..ea7214d6 100644
--- a/src/regex/regcomp.c
+++ b/src/regex/regcomp.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <sys/types.h>
#include <regex.h>
@@ -13,3 +15,6 @@ int regcomp(regex_t * restrict preg, const char * restrict pattern, int cflags)
/*
POSIX(2)
*/
+
+
+#endif
diff --git a/src/regex/regerror.c b/src/regex/regerror.c
index ede7a0f1..129c97df 100644
--- a/src/regex/regerror.c
+++ b/src/regex/regerror.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <sys/types.h>
#include <regex.h>
@@ -14,3 +16,6 @@ size_t regerror(int errcode, const regex_t * restrict preg, char * restrict errb
POSIX(2)
*/
+
+
+#endif
diff --git a/src/regex/regexec.c b/src/regex/regexec.c
index e3fedac7..fdfcc047 100644
--- a/src/regex/regexec.c
+++ b/src/regex/regexec.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <sys/types.h>
#include <regex.h>
@@ -15,3 +17,6 @@ int regexec(const regex_t * restrict preg, const char * restrict string, size_t
POSIX(2)
*/
+
+
+#endif
diff --git a/src/regex/regfree.c b/src/regex/regfree.c
index 5f59624a..572af6af 100644
--- a/src/regex/regfree.c
+++ b/src/regex/regfree.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <sys/types.h>
#include <regex.h>
#include <stdlib.h>
@@ -11,3 +13,6 @@ void regfree(regex_t * preg)
POSIX(2)
*/
+
+
+#endif