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/ctype/isdigit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ctype/isdigit.c') diff --git a/src/ctype/isdigit.c b/src/ctype/isdigit.c index 23413d35..16d93f31 100644 --- a/src/ctype/isdigit.c +++ b/src/ctype/isdigit.c @@ -11,7 +11,7 @@ int isdigit(int c) return isxdigit(c) && !isalpha(c); } -__check_1(int, 0, isdigit, int) +CHECK_1(int, 0, isdigit, int) /*** tests whether ARGUMENT(c) is a character in the class CHARACTER_CLASS(digit) -- cgit v1.2.1