diff options
| author | Aymeric Wibo <obiwac@FreeBSD.org> | 2026-02-12 13:55:01 +0000 |
|---|---|---|
| committer | Aymeric Wibo <obiwac@FreeBSD.org> | 2026-02-12 13:57:38 +0000 |
| commit | c3f945eac4538de572600787a73221f2549c62c8 (patch) | |
| tree | e1d4e051908e2c5fdf4142a1d9f9ec578bdffb33 /lib/libc/stdlib | |
| parent | 83693c121aecccf3499c52fcf409157ee604cd53 (diff) | |
Diffstat (limited to 'lib/libc/stdlib')
| -rw-r--r-- | lib/libc/stdlib/imaxdiv.c | 1 | ||||
| -rw-r--r-- | lib/libc/stdlib/ldiv.c | 2 | ||||
| -rw-r--r-- | lib/libc/stdlib/lldiv.c | 1 |
3 files changed, 0 insertions, 4 deletions
diff --git a/lib/libc/stdlib/imaxdiv.c b/lib/libc/stdlib/imaxdiv.c index bf9737a3c47a..a8b4df2f3904 100644 --- a/lib/libc/stdlib/imaxdiv.c +++ b/lib/libc/stdlib/imaxdiv.c @@ -28,7 +28,6 @@ #include <inttypes.h> -/* See comments in div.c for implementation details. */ imaxdiv_t imaxdiv(intmax_t numer, intmax_t denom) { diff --git a/lib/libc/stdlib/ldiv.c b/lib/libc/stdlib/ldiv.c index 4c73bcc14af4..7b785ef66c16 100644 --- a/lib/libc/stdlib/ldiv.c +++ b/lib/libc/stdlib/ldiv.c @@ -39,8 +39,6 @@ ldiv(long num, long denom) { ldiv_t r; - /* see div.c for comments */ - r.quot = num / denom; r.rem = num % denom; diff --git a/lib/libc/stdlib/lldiv.c b/lib/libc/stdlib/lldiv.c index 6feeb74bacd6..cdce0a4f6a27 100644 --- a/lib/libc/stdlib/lldiv.c +++ b/lib/libc/stdlib/lldiv.c @@ -28,7 +28,6 @@ #include <stdlib.h> -/* See comments in div.c for implementation details. */ lldiv_t lldiv(long long numer, long long denom) { |
