From d0e2ffcf5783cf8423472e66e8b877ce5da42595 Mon Sep 17 00:00:00 2001 From: cuz Date: Sat, 2 Dec 2000 09:16:07 +0000 Subject: [PATCH] vcprintf() does now have __fastcall__ calling conventions git-svn-id: svn://svn.cc65.org/cc65/trunk@522 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- include/conio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.39.5