Don't use the extern keyword for functions because it's redundant.

This commit is contained in:
László Monda
2017-09-28 02:37:55 +02:00
parent 41c2556386
commit ecf1ad2468
29 changed files with 62 additions and 59 deletions

View File

@@ -13,7 +13,7 @@
// Functions:
extern void ADC_Init(void);
extern uint32_t ADC_Measure(void);
void ADC_Init(void);
uint32_t ADC_Measure(void);
#endif

View File

@@ -44,6 +44,6 @@
// Functions:
extern void InitLedDriver();
void InitLedDriver();
#endif

View File

@@ -18,6 +18,6 @@
// Functions:
extern void InitMergeSensor();
void InitMergeSensor();
#endif

View File

@@ -18,6 +18,6 @@
// Functions:
extern void InitResetButton();
void InitResetButton();
#endif

View File

@@ -22,6 +22,6 @@
// Functions:
extern void InitTestLed();
void InitTestLed();
#endif