Don't use the extern keyword for functions because it's redundant.
This commit is contained in:
@@ -13,7 +13,7 @@
|
||||
|
||||
// Functions:
|
||||
|
||||
extern void InitI2cWatchdog(void);
|
||||
extern void RunWatchdog(void);
|
||||
void InitI2cWatchdog(void);
|
||||
void RunWatchdog(void);
|
||||
|
||||
#endif
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
|
||||
// Functions:
|
||||
|
||||
extern void InitPeripherals(void);
|
||||
extern void InitI2c(void);
|
||||
void InitPeripherals(void);
|
||||
void InitI2c(void);
|
||||
|
||||
#endif
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
|
||||
// Functions:
|
||||
|
||||
extern void LedPwm_Init(void);
|
||||
void LedPwm_Init(void);
|
||||
void LedPwm_SetBrightness(uint8_t brightnessPercent);
|
||||
|
||||
#endif
|
||||
|
||||
@@ -22,6 +22,6 @@
|
||||
|
||||
// Functions:
|
||||
|
||||
extern void InitTestLed(void);
|
||||
void InitTestLed(void);
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user