mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 17:23:56 -06:00
Delete useless 'extern' qualifiers for functions
'extern' qualifier is useless for function declarations. Delete them. Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
ba76a84d2d
commit
64b85a8f23
22 changed files with 126 additions and 131 deletions
|
@ -35,9 +35,9 @@ struct WatchdogTimerModel {
|
|||
typedef struct WatchdogTimerModel WatchdogTimerModel;
|
||||
|
||||
/* in hw/watchdog.c */
|
||||
extern int select_watchdog(const char *p);
|
||||
extern int select_watchdog_action(const char *action);
|
||||
extern void watchdog_add_model(WatchdogTimerModel *model);
|
||||
extern void watchdog_perform_action(void);
|
||||
int select_watchdog(const char *p);
|
||||
int select_watchdog_action(const char *action);
|
||||
void watchdog_add_model(WatchdogTimerModel *model);
|
||||
void watchdog_perform_action(void);
|
||||
|
||||
#endif /* QEMU_WATCHDOG_H */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue