From: Oliver Schmidt Date: Sun, 29 Apr 2018 11:50:09 +0000 (+0200) Subject: Removed extern keyword from function prototype. X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=a482b54ed72e4c194fed57631266ca75b8aadc48;p=cc65 Removed extern keyword from function prototype. --- diff --git a/include/accelerator.h b/include/accelerator.h index d29b73467..d25195455 100644 --- a/include/accelerator.h +++ b/include/accelerator.h @@ -60,7 +60,7 @@ /* C64/C128 SuperCPU cartridge */ -extern unsigned char __fastcall__ set_scpu_speed (unsigned char speed); +unsigned char __fastcall__ set_scpu_speed (unsigned char speed); /* Set the speed of the SuperCPU cartridge, using SPEED_SLOW will switch to * 1 Mhz mode, SPEED_20X or SPEED_FAST will switch to 20 Mhz mode.