diff options
| author | Jakob Kaivo <jkk@ung.org> | 2023-11-14 12:12:10 -0500 |
|---|---|---|
| committer | Jakob Kaivo <jkk@ung.org> | 2023-11-14 12:12:10 -0500 |
| commit | 920746cbb5d18d8aef284d3fe71a57cd52509117 (patch) | |
| tree | 11b4436a58c077f36b1236f0c702af00c763e3f6 /src/regex | |
| parent | f23336fbc3148105c42eebfa44a22d1164828108 (diff) | |
disable all functions; will strategically reenable them as tested
Diffstat (limited to 'src/regex')
| -rw-r--r-- | src/regex/regcomp.c | 5 | ||||
| -rw-r--r-- | src/regex/regerror.c | 5 | ||||
| -rw-r--r-- | src/regex/regexec.c | 5 | ||||
| -rw-r--r-- | src/regex/regfree.c | 5 |
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 |
