diff options
| author | Stanislav Malyshev <stas@php.net> | 2000-08-03 16:37:35 +0000 |
|---|---|---|
| committer | Stanislav Malyshev <stas@php.net> | 2000-08-03 16:37:35 +0000 |
| commit | fda23fc253bb8cde0bbf26e2ba91848440f47530 (patch) | |
| tree | 83177631f63ef6cf8a4e30e065fe4d2dfcf60ee7 | |
| parent | 688268727e14a81f98aec5e68f47d7ce7cda7ad1 (diff) | |
| download | php-git-fda23fc253bb8cde0bbf26e2ba91848440f47530.tar.gz | |
Fix fclose prototype (#5930)
| -rw-r--r-- | ext/standard/file.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
