1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-27 12:29:33 +00:00

Make fputs __fastcall__

git-svn-id: svn://svn.cc65.org/cc65/trunk@2016 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2003-03-14 00:02:47 +00:00
parent 06c1fafdcd
commit a39db251a2

View File

@ -13,7 +13,7 @@
int fputs (const char* s, FILE* f)
int __fastcall__ fputs (const char* s, 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) {