From 8c6fee9f7f4c09bf96766942fdd430f8beb638b0 Mon Sep 17 00:00:00 2001 From: Samuel Zeter Date: Fri, 28 Feb 2025 12:05:20 +1000 Subject: [PATCH] libio: Clean up fputc/putc comments Remove duplicate comments in stdio.h Signed-off-by: Samuel Zeter Reviewed-by: Arjun Shankar --- libio/stdio.h | 3 --- 1 file changed, 3 deletions(-) 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));