1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-22 12:30:41 +00:00

Make the functions __fastcall__

git-svn-id: svn://svn.cc65.org/cc65/trunk@1797 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2002-12-20 21:02:17 +00:00
parent 4157bba161
commit f941b4bcee

View File

@ -58,8 +58,8 @@ typedef void (*__sigfunc) (int);
#define SIGTERM 5
/* Function declarations */
__sigfunc signal (int sig, __sigfunc func);
int raise (int sig);
__sigfunc __fastcall__ signal (int sig, __sigfunc func);
int __fastcall__ raise (int sig);