From eb55cd7a9e8a8e77f48f0c7d7449fa9e00cea75f Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Wed, 31 Jan 2024 17:25:37 -0500 Subject: git rid of __check_* in favor of CHECK_* --- src/inttypes/strtoumax.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/inttypes/strtoumax.c') 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) -- cgit v1.2.1