From: cuz Date: Sat, 2 Dec 2000 09:16:07 +0000 (+0000) Subject: vcprintf() does now have __fastcall__ calling conventions X-Git-Tag: V2.12.0~3018 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=d0e2ffcf5783cf8423472e66e8b877ce5da42595;p=cc65 vcprintf() does now have __fastcall__ calling conventions git-svn-id: svn://svn.cc65.org/cc65/trunk@522 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/include/conio.h b/include/conio.h index 6f232c037..d97496371 100644 --- a/include/conio.h +++ b/include/conio.h @@ -121,7 +121,7 @@ void __fastcall__ cputsxy (unsigned char x, unsigned char y, const char* s); int cprintf (const char* format, ...); /* Like printf, but uses direct screen I/O */ -int vcprintf (const char* format, va_list ap); +int __fastcall__ vcprintf (const char* format, va_list ap); /* Like vprintf, but uses direct screen I/O */ char cgetc (void);