summaryrefslogtreecommitdiff
path: root/src/re_comp
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2023-11-14 12:12:10 -0500
committerJakob Kaivo <jkk@ung.org>2023-11-14 12:12:10 -0500
commit920746cbb5d18d8aef284d3fe71a57cd52509117 (patch)
tree11b4436a58c077f36b1236f0c702af00c763e3f6 /src/re_comp
parentf23336fbc3148105c42eebfa44a22d1164828108 (diff)
disable all functions; will strategically reenable them as tested
Diffstat (limited to 'src/re_comp')
-rw-r--r--src/re_comp/re_comp.c5
-rw-r--r--src/re_comp/re_exec.c5
2 files changed, 10 insertions, 0 deletions
diff --git a/src/re_comp/re_comp.c b/src/re_comp/re_comp.c
index 88d8fb97..b6b7e7d4 100644
--- a/src/re_comp/re_comp.c
+++ b/src/re_comp/re_comp.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <re_comp.h>
char *re_comp(const char *string)
@@ -8,3 +10,6 @@ char *re_comp(const char *string)
/*
XOPEN(400,600)
*/
+
+
+#endif
diff --git a/src/re_comp/re_exec.c b/src/re_comp/re_exec.c
index 0e3b89e9..92035952 100644
--- a/src/re_comp/re_exec.c
+++ b/src/re_comp/re_exec.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <re_comp.h>
#define _XOPEN_LEGACY 500
@@ -10,3 +12,6 @@ int re_exec(const char *string)
/*
XOPEN(400,600)
*/
+
+
+#endif