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:
Aymeric Wibo
2026-02-12 14:55:01 +01:00
parent 83693c121a
commit c3f945eac4
3 changed files with 0 additions and 4 deletions
-1
View File
@@ -28,7 +28,6 @@
#include <inttypes.h>
/* See comments in div.c for implementation details. */
imaxdiv_t
imaxdiv(intmax_t numer, intmax_t denom)
{
-2
View File
@@ -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;
-1
View File
@@ -28,7 +28,6 @@
#include <stdlib.h>
/* See comments in div.c for implementation details. */
lldiv_t
lldiv(long long numer, long long denom)
{