diff options
author | ache <ache@FreeBSD.org> | 2016-06-05 18:11:52 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 2016-06-05 18:11:52 +0000 |
commit | 704e666406f9401fa4d34ab536981c2f7837ddf7 (patch) | |
tree | e8f256f6c8e7bf97fa6de734594702873a326cd6 /lib/libc/stdlib/imaxdiv.c | |
parent | 1040e2abb6d69c17df9ac2b20ed5a6615e11d6f9 (diff) | |
download | FreeBSD-src-704e666406f9401fa4d34ab536981c2f7837ddf7.zip FreeBSD-src-704e666406f9401fa4d34ab536981c2f7837ddf7.tar.gz |
MFC: r301115
Don't use fixup for C99 and up, the compiler result is already correct.
Suggested by: bde
Diffstat (limited to 'lib/libc/stdlib/imaxdiv.c')
-rw-r--r-- | lib/libc/stdlib/imaxdiv.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/libc/stdlib/imaxdiv.c b/lib/libc/stdlib/imaxdiv.c index 7dae467..adcab0b 100644 --- a/lib/libc/stdlib/imaxdiv.c +++ b/lib/libc/stdlib/imaxdiv.c @@ -37,9 +37,11 @@ imaxdiv(intmax_t numer, intmax_t denom) retval.quot = numer / denom; retval.rem = numer % denom; +#if !defined(__STDC_VERSION__) || (__STDC_VERSION__ < 199901L) if (numer >= 0 && retval.rem < 0) { retval.quot++; retval.rem -= denom; } +#endif return (retval); } |