Made _afailed() and uncompress() be fastcall functions.

This commit is contained in:
Greg King
2015-03-13 07:35:47 -04:00
parent 66d79da3c2
commit 38231a5cc6
6 changed files with 14 additions and 13 deletions

View File

@@ -6,7 +6,7 @@
/* */
/* */
/* */
/* (C) 1998-2000, Ullrich von Bassewitz */
/* (C) 1998-2015, Ullrich von Bassewitz */
/* Roemerstrasse 52 */
/* D-70794 Filderstadt */
/* EMail: uz@cc65.org */
@@ -42,7 +42,7 @@
#ifdef NDEBUG
# define assert(expr)
#else
extern void __cdecl__ _afailed (const char*, unsigned);
extern void __fastcall__ _afailed (const char*, unsigned);
# define assert(expr) ((expr)? (void)0 : _afailed(__FILE__, __LINE__))
#endif