summaryrefslogtreecommitdiff
path: root/src/inttypes/imaxdiv.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/inttypes/imaxdiv.c')
-rw-r--r--src/inttypes/imaxdiv.c10
1 files changed, 4 insertions, 6 deletions
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 <stddef.h>
#include <inttypes.h>
+#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