1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-26 05:29:30 +00:00

vcprintf() does now have __fastcall__ calling conventions

git-svn-id: svn://svn.cc65.org/cc65/trunk@522 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2000-12-02 09:16:07 +00:00
parent 355569d960
commit d0e2ffcf57

View File

@ -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);