From: cuz Date: Mon, 25 Nov 2002 14:37:52 +0000 (+0000) Subject: Make fclose __fastcall__ X-Git-Tag: V2.12.0~2007 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=5f812a3269eeabda2bdb0668b22a1eede4897696;p=cc65 Make fclose __fastcall__ git-svn-id: svn://svn.cc65.org/cc65/trunk@1633 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/include/stdio.h b/include/stdio.h index 04725d244..02f482159 100644 --- a/include/stdio.h +++ b/include/stdio.h @@ -74,7 +74,7 @@ extern FILE* stderr; /* Functions */ void __fastcall__ clearerr (FILE* f); -int fclose (FILE* f); +int __fastcall__ fclose (FILE* f); int __fastcall__ feof (FILE* f); int __fastcall__ ferror (FILE* f); int __fastcall__ fflush (FILE* f);