summaryrefslogtreecommitdiff
path: root/debug/fgets_chk.c
diff options
context:
space:
mode:
Diffstat (limited to 'debug/fgets_chk.c')
-rw-r--r--debug/fgets_chk.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/debug/fgets_chk.c b/debug/fgets_chk.c
index 024c5cc0ee..f223653370 100644
--- a/debug/fgets_chk.c
+++ b/debug/fgets_chk.c
@@ -29,9 +29,9 @@
#include <sys/param.h>
char *
-__fgets_chk (char *buf, size_t size, int n, _IO_FILE *fp)
+__fgets_chk (char *buf, size_t size, int n, FILE *fp)
{
- _IO_size_t count;
+ size_t count;
char *result;
CHECK_FILE (fp, NULL);
if (n <= 0)