libc: Remove leftover comments
These comments refer to a comment in div.c which doesn't exist anymore.
Fixes: 7c7299df76 ("libc: Remove support for pre-C99 C standards")
Sponsored by: Klara, Inc.
This commit is contained in:
@@ -28,7 +28,6 @@
|
||||
|
||||
#include <inttypes.h>
|
||||
|
||||
/* See comments in div.c for implementation details. */
|
||||
imaxdiv_t
|
||||
imaxdiv(intmax_t numer, intmax_t denom)
|
||||
{
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
@@ -28,7 +28,6 @@
|
||||
|
||||
#include <stdlib.h>
|
||||
|
||||
/* See comments in div.c for implementation details. */
|
||||
lldiv_t
|
||||
lldiv(long long numer, long long denom)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user