Don't use the extern keyword for functions because it's redundant.
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -44,6 +44,6 @@
|
||||
|
||||
// Functions:
|
||||
|
||||
extern void InitLedDriver();
|
||||
void InitLedDriver();
|
||||
|
||||
#endif
|
||||
|
||||
@@ -18,6 +18,6 @@
|
||||
|
||||
// Functions:
|
||||
|
||||
extern void InitMergeSensor();
|
||||
void InitMergeSensor();
|
||||
|
||||
#endif
|
||||
|
||||
@@ -18,6 +18,6 @@
|
||||
|
||||
// Functions:
|
||||
|
||||
extern void InitResetButton();
|
||||
void InitResetButton();
|
||||
|
||||
#endif
|
||||
|
||||
@@ -22,6 +22,6 @@
|
||||
|
||||
// Functions:
|
||||
|
||||
extern void InitTestLed();
|
||||
void InitTestLed();
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user