about summary refs log tree commit diff
path: root/debug/fgetws_chk.c
diff options
context:
space:
mode:
Diffstat (limited to 'debug/fgetws_chk.c')
-rw-r--r--debug/fgetws_chk.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/debug/fgetws_chk.c b/debug/fgetws_chk.c
index 4693a0ba1b..8ea6635b30 100644
--- a/debug/fgetws_chk.c
+++ b/debug/fgetws_chk.c
@@ -20,9 +20,9 @@
 #include <sys/param.h>
 
 wchar_t *
-__fgetws_chk (wchar_t *buf, size_t size, int n, _IO_FILE *fp)
+__fgetws_chk (wchar_t *buf, size_t size, int n, FILE *fp)
 {
-  _IO_size_t count;
+  size_t count;
   wchar_t *result;
   int old_error;
   CHECK_FILE (fp, NULL);