From 920746cbb5d18d8aef284d3fe71a57cd52509117 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Tue, 14 Nov 2023 12:12:10 -0500 Subject: disable all functions; will strategically reenable them as tested --- src/wordexp/wordexp.c | 5 +++++ src/wordexp/wordfree.c | 5 +++++ 2 files changed, 10 insertions(+) (limited to 'src/wordexp') diff --git a/src/wordexp/wordexp.c b/src/wordexp/wordexp.c index 428d0783..412449cb 100644 --- a/src/wordexp/wordexp.c +++ b/src/wordexp/wordexp.c @@ -1,3 +1,5 @@ +#if 0 + #include int wordexp(const char *restrict words, wordexp_t *restrict pwordexp, int flags) @@ -11,3 +13,6 @@ int wordexp(const char *restrict words, wordexp_t *restrict pwordexp, int flags) /* POSIX(2) */ + + +#endif diff --git a/src/wordexp/wordfree.c b/src/wordexp/wordfree.c index 0568f261..b8dfc8fa 100644 --- a/src/wordexp/wordfree.c +++ b/src/wordexp/wordfree.c @@ -1,3 +1,5 @@ +#if 0 + #include #include @@ -9,3 +11,6 @@ void wordfree(wordexp_t *pwordexp) /* POSIX(2) */ + + +#endif -- cgit v1.2.1