From a39db251a2ae830873e8af3184997549f540d1d5 Mon Sep 17 00:00:00 2001 From: cuz Date: Fri, 14 Mar 2003 00:02:47 +0000 Subject: [PATCH] Make fputs __fastcall__ git-svn-id: svn://svn.cc65.org/cc65/trunk@2016 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- libsrc/common/fputs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- 2.39.5