From: Samuel Zeter Date: Fri, 28 Feb 2025 02:05:20 +0000 (+1000) Subject: libio: Clean up fputc/putc comments X-Git-Tag: glibc-2.42~433 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8c6fee9f7f4c09bf96766942fdd430f8beb638b0;p=thirdparty%2Fglibc.git libio: Clean up fputc/putc comments Remove duplicate comments in stdio.h Signed-off-by: Samuel Zeter Reviewed-by: Arjun Shankar --- diff --git a/libio/stdio.h b/libio/stdio.h index 602f53a946..4436525731 100644 --- a/libio/stdio.h +++ b/libio/stdio.h @@ -604,9 +604,6 @@ extern int fgetc_unlocked (FILE *__stream) __nonnull ((1)); /* Write a character to STREAM. These functions are possible cancellation points and therefore not - marked with __THROW. - - These functions is a possible cancellation point and therefore not marked with __THROW. */ extern int fputc (int __c, FILE *__stream) __nonnull ((2)); extern int putc (int __c, FILE *__stream) __nonnull ((2));