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/inttypes/imaxabs.c | 5 +++++ src/inttypes/imaxdiv.c | 5 +++++ src/inttypes/strtoimax.c | 5 +++++ src/inttypes/strtoumax.c | 5 +++++ src/inttypes/wcstoimax.c | 5 +++++ src/inttypes/wcstoumax.c | 5 +++++ 6 files changed, 30 insertions(+) (limited to 'src/inttypes') diff --git a/src/inttypes/imaxabs.c b/src/inttypes/imaxabs.c index 0ea60644..7f4e22ae 100644 --- a/src/inttypes/imaxabs.c +++ b/src/inttypes/imaxabs.c @@ -1,3 +1,5 @@ +#if 0 + #include #include @@ -22,3 +24,6 @@ UNDEFINED(ABS(ARGUMENT(j)) cannot be represented RETURN_SUCCESS(ABS(ARGUMENT(j)) STDC(199901) */ + + +#endif diff --git a/src/inttypes/imaxdiv.c b/src/inttypes/imaxdiv.c index eb99f2cf..ee318996 100644 --- a/src/inttypes/imaxdiv.c +++ b/src/inttypes/imaxdiv.c @@ -1,3 +1,5 @@ +#if 0 + #include #include @@ -21,3 +23,6 @@ UNDEFINED(The result cannot be represented) RETURN_SUCCESS(a TYPEDEF(ldiv_t) containing both the quotient and remainder) STDC(199901) */ + + +#endif diff --git a/src/inttypes/strtoimax.c b/src/inttypes/strtoimax.c index 9a42b614..4c8db326 100644 --- a/src/inttypes/strtoimax.c +++ b/src/inttypes/strtoimax.c @@ -1,3 +1,5 @@ +#if 0 + #include #include #include @@ -17,3 +19,6 @@ intmax_t strtoimax(const char * restrict nptr, char ** restrict endptr, int base /* STDC(199901) */ + + +#endif diff --git a/src/inttypes/strtoumax.c b/src/inttypes/strtoumax.c index f8017371..25dca76c 100644 --- a/src/inttypes/strtoumax.c +++ b/src/inttypes/strtoumax.c @@ -1,3 +1,5 @@ +#if 0 + #include #include #include @@ -17,3 +19,6 @@ uintmax_t strtoumax(const char *restrict nptr, char ** restrict endptr, int base /* STDC(199901) */ + + +#endif diff --git a/src/inttypes/wcstoimax.c b/src/inttypes/wcstoimax.c index 21c0a56d..8ab9734c 100644 --- a/src/inttypes/wcstoimax.c +++ b/src/inttypes/wcstoimax.c @@ -1,3 +1,5 @@ +#if 0 + #include #include #include @@ -19,3 +21,6 @@ intmax_t wcstoimax(const wchar_t * restrict nptr, wchar_t ** restrict endptr, in /* STDC(199901) */ + + +#endif diff --git a/src/inttypes/wcstoumax.c b/src/inttypes/wcstoumax.c index 3ffbf5d8..f19ab877 100644 --- a/src/inttypes/wcstoumax.c +++ b/src/inttypes/wcstoumax.c @@ -1,3 +1,5 @@ +#if 0 + #include #include #include @@ -19,3 +21,6 @@ uintmax_t wcstoumax(const wchar_t * restrict nptr, wchar_t ** restrict endptr, i /* STDC(199901) */ + + +#endif -- cgit v1.2.1