Removed CC_FASTCALL.

CC_FASTCALL was introduced many years ago for the cc65 tool chain. It was never used for another tool chain. With a798b1d648 the cc65 tool chain doesn't need CC_FASTCALL anymore.
This commit is contained in:
Oliver Schmidt 2015-11-01 18:10:17 +01:00
parent 1066bb1a0b
commit 1639b712bb
20 changed files with 37 additions and 56 deletions

View file

@ -156,7 +156,7 @@ tcpflags(unsigned char flags, char *flagsstr)
*flagsstr = 0;
}
/*---------------------------------------------------------------------------*/
static char * CC_FASTCALL
static char *
n(uint16_t num, char *ptr)
{
uint16_t d;
@ -179,14 +179,14 @@ n(uint16_t num, char *ptr)
return ptr;
}
/*---------------------------------------------------------------------------*/
static char * CC_FASTCALL
static char *
d(char *ptr)
{
*ptr = '.';
return ptr + 1;
}
/*---------------------------------------------------------------------------*/
static char * CC_FASTCALL
static char *
s(char *str, char *ptr)
{
strcpy(ptr, str);