From: cuz Date: Fri, 14 Mar 2003 00:02:47 +0000 (+0000) Subject: Make fputs __fastcall__ X-Git-Tag: V2.12.0~1676 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=a39db251a2ae830873e8af3184997549f540d1d5;p=cc65 Make fputs __fastcall__ git-svn-id: svn://svn.cc65.org/cc65/trunk@2016 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/libsrc/common/fputs.c b/libsrc/common/fputs.c index 26eeb85b3..439c6cf6c 100644 --- a/libsrc/common/fputs.c +++ b/libsrc/common/fputs.c @@ -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) {