From: IrgendwerA8 Date: Fri, 29 Mar 2019 21:47:42 +0000 (+0100) Subject: Added space after function name. X-Git-Url: https://git.sur5r.net/?p=cc65;a=commitdiff_plain;h=df80d071e8eeb799bd1d8ec55acd1ee92714c752 Added space after function name. --- diff --git a/doc/funcref.sgml b/doc/funcref.sgml index c715b3a2a..89a8eb13c 100644 --- a/doc/funcref.sgml +++ b/doc/funcref.sgml @@ -5565,7 +5565,7 @@ memory allocated for the driver. / - @@ -5577,7 +5577,7 @@ memory allocated for the driver. / - diff --git a/include/cc65.h b/include/cc65.h index e596e93df..a30bad247 100644 --- a/include/cc65.h +++ b/include/cc65.h @@ -75,12 +75,12 @@ unsigned long __fastcall__ umul16x8r32 (unsigned lhs, unsigned char rhs); unsigned long __fastcall__ umul16x16r32 (unsigned lhs, unsigned rhs); /* Multiplicate two unsigned 16 bit to yield an unsigned 32 bit result */ -unsigned int __fastcall__ mul20(unsigned char value); +unsigned int __fastcall__ mul20 (unsigned char value); /* Multiply an 8 bit unsigned value by 20 and return the 16 bit unsigned ** result */ -unsigned int __fastcall__ mul40(unsigned char value); +unsigned int __fastcall__ mul40 (unsigned char value); /* Multiply an 8 bit unsigned value by 40 and return the 16 bit unsigned ** result */