summaryrefslogtreecommitdiff
path: root/libio/iofgetws.c
diff options
context:
space:
mode:
Diffstat (limited to 'libio/iofgetws.c')
-rw-r--r--libio/iofgetws.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libio/iofgetws.c b/libio/iofgetws.c
index ad3717cc2d..0e2d515df5 100644
--- a/libio/iofgetws.c
+++ b/libio/iofgetws.c
@@ -28,9 +28,9 @@
#include <wchar.h>
wchar_t *
-fgetws (wchar_t *buf, int n, _IO_FILE *fp)
+fgetws (wchar_t *buf, int n, FILE *fp)
{
- _IO_size_t count;
+ size_t count;
wchar_t *result;
int old_error;
CHECK_FILE (fp, NULL);