]> git.sur5r.net Git - cc65/commitdiff
Make _sig_ign and _sig_dfl fastcall
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 26 May 2005 09:20:36 +0000 (09:20 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 26 May 2005 09:20:36 +0000 (09:20 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@3518 b7a2c559-68d2-44c3-8de9-860c34a00d81

include/signal.h

index 884b0e8e43aaeb8b208a21766499b0b2eb80dba8..5cb63fcae1230804b703b881ec1e5c67ee1daf50 100644 (file)
@@ -6,10 +6,10 @@
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
-/* (C) 2002      Ullrich von Bassewitz                                       */
-/*               Wacholderweg 14                                             */
-/*               D-70597 Stuttgart                                           */
-/* EMail:        uz@musoftware.de                                            */
+/* (C) 2002-2005, Ullrich von Bassewitz                                      */
+/*                Römerstraße 52                                             */
+/*                D-70794 Filderstadt                                        */
+/* EMail:         uz@cc65.org                                                */
 /*                                                                           */
 /*                                                                           */
 /* 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);
 
 /* Functions that implement SIG_IGN and SIG_DFL */
-void _sig_ign (int);
-void _sig_dfl (int);
+void __fastcall__ _sig_ign (int);
+void __fastcall__ _sig_dfl (int);
 
 /* Standard signal handling functions */
 #define SIG_DFL         _sig_dfl