diff options
author | Samuel Zeter <samuelzeter@gmail.com> | 2025-02-28 12:05:20 +1000 |
---|---|---|
committer | Arjun Shankar <arjun@redhat.com> | 2025-03-03 16:12:03 +0100 |
commit | 8c6fee9f7f4c09bf96766942fdd430f8beb638b0 (patch) | |
tree | 89cf3b3ba07e39c57dda53e81464a89b6a8d3bad | |
parent | ccdb68e829a31e4cda8339ea0d2dc3e51fb81ba5 (diff) | |
download | glibc-8c6fee9f7f4c09bf96766942fdd430f8beb638b0.zip glibc-8c6fee9f7f4c09bf96766942fdd430f8beb638b0.tar.gz glibc-8c6fee9f7f4c09bf96766942fdd430f8beb638b0.tar.bz2 |
libio: Clean up fputc/putc comments
Remove duplicate comments in stdio.h
Signed-off-by: Samuel Zeter <samuelzeter@gmail.com>
Reviewed-by: Arjun Shankar <arjun@redhat.com>
-rw-r--r-- | libio/stdio.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libio/stdio.h b/libio/stdio.h index 602f53a..4436525 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)); |