1
0
mirror of https://github.com/cc65/cc65.git synced 2025-08-15 21:27:43 +00:00

Make _sig_ign and _sig_dfl fastcall

git-svn-id: svn://svn.cc65.org/cc65/trunk@3518 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2005-05-26 09:20:36 +00:00
parent 3378430097
commit a641ca9802

View File

@@ -6,10 +6,10 @@
/* */ /* */
/* */ /* */
/* */ /* */
/* (C) 2002 Ullrich von Bassewitz */ /* (C) 2002-2005, Ullrich von Bassewitz */
/* Wacholderweg 14 */ /* R<>merstra<72>e 52 */
/* D-70597 Stuttgart */ /* D-70794 Filderstadt */
/* EMail: uz@musoftware.de */ /* EMail: uz@cc65.org */
/* */ /* */
/* */ /* */
/* This software is provided 'as-is', without any expressed or implied */ /* This software is provided 'as-is', without any expressed or implied */
@@ -45,8 +45,8 @@ typedef unsigned char sig_atomic_t;
typedef void __fastcall__ (*__sigfunc) (int); typedef void __fastcall__ (*__sigfunc) (int);
/* Functions that implement SIG_IGN and SIG_DFL */ /* Functions that implement SIG_IGN and SIG_DFL */
void _sig_ign (int); void __fastcall__ _sig_ign (int);
void _sig_dfl (int); void __fastcall__ _sig_dfl (int);
/* Standard signal handling functions */ /* Standard signal handling functions */
#define SIG_DFL _sig_dfl #define SIG_DFL _sig_dfl