diff options
| author | Jakob Kaivo <jkk@ung.org> | 2024-01-30 13:15:59 -0500 |
|---|---|---|
| committer | Jakob Kaivo <jkk@ung.org> | 2024-01-30 13:15:59 -0500 |
| commit | 608008917d26e7b2f6d0e1041ab981c853fe9733 (patch) | |
| tree | 89b3943cea54b5b1b7addadf10951a08d21653d2 /src/inttypes/imaxabs.c | |
| parent | 46e4b9b12ec7d170691c2cb05970d6537633fa71 (diff) | |
update standards and safety checks
Diffstat (limited to 'src/inttypes/imaxabs.c')
| -rw-r--r-- | src/inttypes/imaxabs.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/inttypes/imaxabs.c b/src/inttypes/imaxabs.c index 7f4e22ae..28f82987 100644 --- a/src/inttypes/imaxabs.c +++ b/src/inttypes/imaxabs.c @@ -1,12 +1,13 @@ -#if 0 - -#include <stddef.h> #include <inttypes.h> +#include "_safety.h" +#undef imaxabs /** absolute value **/ intmax_t imaxabs(intmax_t j) { + SIGNAL_SAFE(0); + if (j == INTMAX_MIN) { /* undefined behavior */ return INTMAX_MIN; @@ -24,6 +25,3 @@ UNDEFINED(ABS(ARGUMENT(j)) cannot be represented RETURN_SUCCESS(ABS(ARGUMENT(j)) STDC(199901) */ - - -#endif |
