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/iconv/iconv.c | 5 +++++ src/iconv/iconv_close.c | 5 +++++ src/iconv/iconv_open.c | 5 +++++ 3 files changed, 15 insertions(+) (limited to 'src/iconv') diff --git a/src/iconv/iconv.c b/src/iconv/iconv.c index bdf57b13..55a22401 100644 --- a/src/iconv/iconv.c +++ b/src/iconv/iconv.c @@ -1,3 +1,5 @@ +#if 0 + #include size_t iconv(iconv_t cd, char ** restrict inbuf, size_t * restrict inbytesleft, char ** restrict outbuf, size_t * restrict outbytesleft) @@ -9,3 +11,6 @@ size_t iconv(iconv_t cd, char ** restrict inbuf, size_t * restrict inbytesleft, XOPEN(4) POSIX(200809) */ + + +#endif diff --git a/src/iconv/iconv_close.c b/src/iconv/iconv_close.c index 4bd5082a..83c416e1 100644 --- a/src/iconv/iconv_close.c +++ b/src/iconv/iconv_close.c @@ -1,3 +1,5 @@ +#if 0 + #include int iconv_close(iconv_t cd) @@ -9,3 +11,6 @@ int iconv_close(iconv_t cd) XOPEN(4) POSIX(200809) */ + + +#endif diff --git a/src/iconv/iconv_open.c b/src/iconv/iconv_open.c index 41a04ffd..49d1e444 100644 --- a/src/iconv/iconv_open.c +++ b/src/iconv/iconv_open.c @@ -1,3 +1,5 @@ +#if 0 + #include iconv_t iconv_open(const char * tocode, const char * fromcode) @@ -9,3 +11,6 @@ iconv_t iconv_open(const char * tocode, const char * fromcode) XOPEN(4) POSIX(200809) */ + + +#endif -- cgit v1.2.1