X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=include%2Fassert.h;h=504964dc2d04e07441e3e23d3c33803c11959b11;hb=935f68f686ae13b93522d73bb0f9996eb9527489;hp=87bc4ff02dcc459a6ef6c1ce38a9828f68aae1ed;hpb=85885001b133e2dc320b6f6459259afa69784ca8;p=cc65 diff --git a/include/assert.h b/include/assert.h index 87bc4ff02..504964dc2 100644 --- a/include/assert.h +++ b/include/assert.h @@ -6,10 +6,10 @@ /* */ /* */ /* */ -/* (C) 1998-2000 Ullrich von Bassewitz */ -/* Wacholderweg 14 */ -/* D-70597 Stuttgart */ -/* EMail: uz@musoftware.de */ +/* (C) 1998-2015, Ullrich von Bassewitz */ +/* Roemerstrasse 52 */ +/* D-70794 Filderstadt */ +/* EMail: uz@cc65.org */ /* */ /* */ /* This software is provided 'as-is', without any expressed or implied */ @@ -42,7 +42,7 @@ #ifdef NDEBUG # define assert(expr) #else -extern void _afailed (const char*, unsigned); +extern void __fastcall__ _afailed (const char*, unsigned); # define assert(expr) ((expr)? (void)0 : _afailed(__FILE__, __LINE__)) #endif