diff options
Diffstat (limited to 'libio/stdio.h')
-rw-r--r-- | libio/stdio.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libio/stdio.h b/libio/stdio.h index 87ca35b068..a3ae40b536 100644 --- a/libio/stdio.h +++ b/libio/stdio.h @@ -518,10 +518,11 @@ extern int fputs __P ((__const char *__restrict __s, FILE *__restrict __stream)); #ifdef __USE_GNU -/* This function does the same as `fgets' but does not lock the stream. */ +/* This function does the same as `fputs' but does not lock the stream. */ extern int fputs_unlocked __P ((__const char *__restrict __s, FILE *__restrict __stream)); #endif + /* Write a string, followed by a newline, to stdout. */ extern int puts __P ((__const char *__s)); |