diff options
Diffstat (limited to 'libio/iofgetws_u.c')
-rw-r--r-- | libio/iofgetws_u.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libio/iofgetws_u.c b/libio/iofgetws_u.c index 664939f86d..a930b47a6d 100644 --- a/libio/iofgetws_u.c +++ b/libio/iofgetws_u.c @@ -28,9 +28,9 @@ #include <wchar.h> wchar_t * -fgetws_unlocked (wchar_t *buf, int n, _IO_FILE *fp) +fgetws_unlocked (wchar_t *buf, int n, FILE *fp) { - _IO_size_t count; + size_t count; wchar_t *result; int old_error; CHECK_FILE (fp, NULL); |