From: Paul Eggert Date: Wed, 30 Oct 2002 06:18:19 +0000 (+0000) Subject: (xfclose): Return void, not int, since it always returned zero. X-Git-Tag: BISON-1_875~375 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=760d7aa8fa77f020d5d369ef963c0a07096b0c95;p=platform%2Fupstream%2Fbison.git (xfclose): Return void, not int, since it always returned zero. --- 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);