diff options
Diffstat (limited to 'src/inttypes')
| -rw-r--r-- | src/inttypes/imaxabs.c | 2 | ||||
| -rw-r--r-- | src/inttypes/imaxdiv.c | 2 | ||||
| -rw-r--r-- | src/inttypes/strtoimax.c | 2 | ||||
| -rw-r--r-- | src/inttypes/strtoumax.c | 2 | ||||
| -rw-r--r-- | src/inttypes/wcstoimax.c | 2 | ||||
| -rw-r--r-- | src/inttypes/wcstoumax.c | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/src/inttypes/imaxabs.c b/src/inttypes/imaxabs.c index ca1d93c4..9a49cfc9 100644 --- a/src/inttypes/imaxabs.c +++ b/src/inttypes/imaxabs.c @@ -15,7 +15,7 @@ intmax_t imaxabs(intmax_t j) return j < 0 ? -j : j; } -__check_1(intmax_t, 0, imaxabs, intmax_t) +CHECK_1(intmax_t, 0, imaxabs, intmax_t) /*** computes the absolute value of ARGUMENT(j). diff --git a/src/inttypes/imaxdiv.c b/src/inttypes/imaxdiv.c index 16f19c48..7600cfab 100644 --- a/src/inttypes/imaxdiv.c +++ b/src/inttypes/imaxdiv.c @@ -13,7 +13,7 @@ imaxdiv_t imaxdiv(intmax_t numer, intmax_t denom) return r; } -__check_2(imaxdiv_t, {0}, imaxdiv, intmax_t, intmax_t) +CHECK_2(imaxdiv_t, {0}, imaxdiv, intmax_t, intmax_t) /*** computes both the quotient and remainder of ARGUMENT(numer) diff --git a/src/inttypes/strtoimax.c b/src/inttypes/strtoimax.c index 01a8bfdb..488729c7 100644 --- a/src/inttypes/strtoimax.c +++ b/src/inttypes/strtoimax.c @@ -19,7 +19,7 @@ intmax_t strtoimax(const char * restrict nptr, char ** restrict endptr, int base return ret; } -__check_3(intmax_t, 0, strtoimax, const char * restrict, char ** restrict, int) +CHECK_3(intmax_t, 0, strtoimax, const char * restrict, char ** restrict, int) /* STDC(199901) diff --git a/src/inttypes/strtoumax.c b/src/inttypes/strtoumax.c index 77ae2f10..4370ccb0 100644 --- a/src/inttypes/strtoumax.c +++ b/src/inttypes/strtoumax.c @@ -19,7 +19,7 @@ uintmax_t strtoumax(const char *restrict nptr, char ** restrict endptr, int base return ret; } -__check_3(uintmax_t, 0, strtoumax, const char *restrict, char ** restrict, int) +CHECK_3(uintmax_t, 0, strtoumax, const char *restrict, char ** restrict, int) /* STDC(199901) diff --git a/src/inttypes/wcstoimax.c b/src/inttypes/wcstoimax.c index b75e61ca..a63a8a29 100644 --- a/src/inttypes/wcstoimax.c +++ b/src/inttypes/wcstoimax.c @@ -20,7 +20,7 @@ intmax_t wcstoimax(const wchar_t * restrict nptr, wchar_t ** restrict endptr, in return ret; } -__check_3(intmax_t, 0, wcstoimax, const wchar_t * restrict, wchar_t **restrict, int) +CHECK_3(intmax_t, 0, wcstoimax, const wchar_t * restrict, wchar_t **restrict, int) /* STDC(199901) diff --git a/src/inttypes/wcstoumax.c b/src/inttypes/wcstoumax.c index 59788f90..089ee104 100644 --- a/src/inttypes/wcstoumax.c +++ b/src/inttypes/wcstoumax.c @@ -20,7 +20,7 @@ uintmax_t wcstoumax(const wchar_t * restrict nptr, wchar_t ** restrict endptr, i return ret; } -__check_3(uintmax_t, 0, wcstoumax, const wchar_t * restrict, wchar_t ** restrict, int) +CHECK_3(uintmax_t, 0, wcstoumax, const wchar_t * restrict, wchar_t ** restrict, int) /* STDC(199901) |
