diff options
author | ache <ache@FreeBSD.org> | 2016-06-01 10:14:25 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 2016-06-01 10:14:25 +0000 |
commit | d08f5be5b090276abfc30c4d289833cbdfb996ff (patch) | |
tree | 350e7f50704ec071aad07cfd31935d82ff6112df /lib/libc/stdlib/ldiv.c | |
parent | fac944a70a00eab9c2ba2b2e96df710bcfc78593 (diff) | |
download | FreeBSD-src-d08f5be5b090276abfc30c4d289833cbdfb996ff.zip FreeBSD-src-d08f5be5b090276abfc30c4d289833cbdfb996ff.tar.gz |
Don't use fixup for C99 and up, the compiler result is already correct.
Suggested by: bde
MFC after: 1 week
Diffstat (limited to 'lib/libc/stdlib/ldiv.c')
-rw-r--r-- | lib/libc/stdlib/ldiv.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/libc/stdlib/ldiv.c b/lib/libc/stdlib/ldiv.c index 0ec98e6..745c566 100644 --- a/lib/libc/stdlib/ldiv.c +++ b/lib/libc/stdlib/ldiv.c @@ -48,9 +48,11 @@ ldiv(num, denom) r.quot = num / denom; r.rem = num % denom; +#if !defined(__STDC_VERSION__) || (__STDC_VERSION__ < 199901L) if (num >= 0 && r.rem < 0) { r.quot++; r.rem -= denom; } +#endif return (r); } |