From 608008917d26e7b2f6d0e1041ab981c853fe9733 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Tue, 30 Jan 2024 13:15:59 -0500 Subject: update standards and safety checks --- src/inttypes/imaxdiv.c | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'src/inttypes/imaxdiv.c') diff --git a/src/inttypes/imaxdiv.c b/src/inttypes/imaxdiv.c index ee318996..4c1c7a70 100644 --- a/src/inttypes/imaxdiv.c +++ b/src/inttypes/imaxdiv.c @@ -1,12 +1,13 @@ -#if 0 - -#include #include +#include "_safety.h" +#undef imaxdiv /** calculate quotient and remainder **/ imaxdiv_t imaxdiv(intmax_t numer, intmax_t denom) { + SIGNAL_SAFE(0); + imaxdiv_t r; r.quot = numer / denom; r.rem = numer % denom; @@ -23,6 +24,3 @@ UNDEFINED(The result cannot be represented) RETURN_SUCCESS(a TYPEDEF(ldiv_t) containing both the quotient and remainder) STDC(199901) */ - - -#endif -- cgit v1.2.1