diff options
Diffstat (limited to 'libio/iofputs.c')
-rw-r--r-- | libio/iofputs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libio/iofputs.c b/libio/iofputs.c index 176e9ed281..96c7e8d329 100644 --- a/libio/iofputs.c +++ b/libio/iofputs.c @@ -28,9 +28,9 @@ #include <string.h> int -_IO_fputs (const char *str, _IO_FILE *fp) +_IO_fputs (const char *str, FILE *fp) { - _IO_size_t len = strlen (str); + size_t len = strlen (str); int result = EOF; CHECK_FILE (fp, EOF); _IO_acquire_lock (fp); |