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/time/gmtime_s.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/time/gmtime_s.c') diff --git a/src/time/gmtime_s.c b/src/time/gmtime_s.c index 1e1bd6c1..54b1461f 100644 --- a/src/time/gmtime_s.c +++ b/src/time/gmtime_s.c @@ -11,7 +11,7 @@ struct tm * gmtime_s(const time_t * restrict timer, struct tm * restrict result) return NULL; } -__check_2(struct tm *, NULL, gmtime_s, const time_t * restrict, struct tm * restrict) +CHECK_2(struct tm *, NULL, gmtime_s, const time_t * restrict, struct tm * restrict) /*** The fn(gmtime) function converts the UTC time at arg(timer) to a filled out -- cgit v1.2.1