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/inttypes | |
| parent | f23336fbc3148105c42eebfa44a22d1164828108 (diff) | |
disable all functions; will strategically reenable them as tested
Diffstat (limited to 'src/inttypes')
| -rw-r--r-- | src/inttypes/imaxabs.c | 5 | ||||
| -rw-r--r-- | src/inttypes/imaxdiv.c | 5 | ||||
| -rw-r--r-- | src/inttypes/strtoimax.c | 5 | ||||
| -rw-r--r-- | src/inttypes/strtoumax.c | 5 | ||||
| -rw-r--r-- | src/inttypes/wcstoimax.c | 5 | ||||
| -rw-r--r-- | src/inttypes/wcstoumax.c | 5 |
6 files changed, 30 insertions, 0 deletions
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 <stddef.h> #include <inttypes.h> @@ -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 <stddef.h> #include <inttypes.h> @@ -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 <stddef.h> #include <ctype.h> #include <errno.h> @@ -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 <stddef.h> #include <ctype.h> #include <errno.h> @@ -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 <stddef.h> #include <errno.h> #include <inttypes.h> @@ -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 <stddef.h> #include <errno.h> #include <inttypes.h> @@ -19,3 +21,6 @@ uintmax_t wcstoumax(const wchar_t * restrict nptr, wchar_t ** restrict endptr, i /* STDC(199901) */ + + +#endif |
