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/tolower.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ctype/tolower.c') diff --git a/src/ctype/tolower.c b/src/ctype/tolower.c index 0cbdb9d4..d5284159 100644 --- a/src/ctype/tolower.c +++ b/src/ctype/tolower.c @@ -12,7 +12,7 @@ int tolower(int c) return c == EOF ? EOF : map[c]; } -__check_1(int, 0, tolower, int) +CHECK_1(int, 0, tolower, int) /*** converts an uppercase letter to its equivalent lowercase letter in the current -- cgit v1.2.1