From 760d7aa8fa77f020d5d369ef963c0a07096b0c95 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Wed, 30 Oct 2002 06:18:19 +0000 Subject: [PATCH] (xfclose): Return void, not int, since it always returned zero. --- src/files.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/files.h b/src/files.h index 4b162ee..3d264db 100644 --- a/src/files.h +++ b/src/files.h @@ -55,7 +55,7 @@ extern char *infile; void compute_output_file_names (void); FILE *xfopen (const char *name, const char *mode); -int xfclose (FILE *ptr); +void xfclose (FILE *ptr); /* Is SUFFIX ending STRING? */ int strsuffix (const char* string, const char* suffix); -- 2.7.4