diff --git a/newlib/libc/stdlib/imaxdiv.c b/newlib/libc/stdlib/imaxdiv.c
index 1bb73a025..b88b4a6a5 100644
--- a/newlib/libc/stdlib/imaxdiv.c
+++ b/newlib/libc/stdlib/imaxdiv.c
@@ -29,7 +29,6 @@
 #include <inttypes.h>
 #include <stdint.h>
 
-/* See comments in div.c for implementation details. */
 imaxdiv_t
 imaxdiv(intmax_t numer, intmax_t denom)
 {
diff --git a/newlib/libc/stdlib/ldiv.c b/newlib/libc/stdlib/ldiv.c
index 4981e3b21..34052b6c9 100644
--- a/newlib/libc/stdlib/ldiv.c
+++ b/newlib/libc/stdlib/ldiv.c
@@ -85,8 +85,6 @@ ldiv (long num,
 {
 	ldiv_t r;
 
-	/* see div.c for comments */
-
 	r.quot = num / denom;
 	r.rem = num % denom;
 
