From e04cf58cf3b404644b9983225ba625d656034078 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Tue, 30 Jan 2024 22:59:08 -0500 Subject: update to 1:1 checked functions --- src/time/gmtime_s.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/time/gmtime_s.c') diff --git a/src/time/gmtime_s.c b/src/time/gmtime_s.c index 2eb02309..1e1bd6c1 100644 --- a/src/time/gmtime_s.c +++ b/src/time/gmtime_s.c @@ -11,6 +11,8 @@ 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) + /*** The fn(gmtime) function converts the UTC time at arg(timer) to a filled out type(struct tm). -- cgit v1.2.1