diff options
Diffstat (limited to 'hw/watchdog.h')
-rw-r--r-- | hw/watchdog.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/hw/watchdog.h b/hw/watchdog.h index 8fd32c34da..c12a29311a 100644 --- a/hw/watchdog.h +++ b/hw/watchdog.h @@ -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 */ |