From fda23fc253bb8cde0bbf26e2ba91848440f47530 Mon Sep 17 00:00:00 2001 From: Stanislav Malyshev Date: Thu, 3 Aug 2000 16:37:35 +0000 Subject: [PATCH] Fix fclose prototype (#5930) --- ext/standard/file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/standard/file.c b/ext/standard/file.c index 66fb2068b5..dc8e2276f8 100644 --- a/ext/standard/file.c +++ b/ext/standard/file.c @@ -75,7 +75,7 @@ #endif #if MISSING_FCLOSE_DECL -extern int fclose(); +extern int fclose(FILE *); #endif #ifdef HAVE_SYS_MMAN_H -- 2.50.1