Modifications for smaller code size.

git-svn-id: svn://svn.cc65.org/cc65/trunk@5777 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz
2012-07-10 20:45:16 +00:00
parent baa978d7a4
commit 7a0fa3ce67
2 changed files with 4 additions and 8 deletions

View File

@@ -13,7 +13,7 @@
int __fastcall__ fputs (const char* s, FILE* f)
int __fastcall__ fputs (const char* s, register FILE* f)
{
/* Check if the file is open or if there is an error condition */
if ((f->f_flags & _FOPEN) == 0 || (f->f_flags & (_FERROR | _FEOF)) != 0) {