summaryrefslogtreecommitdiff
path: root/apps/menu.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/menu.h')
-rw-r--r--apps/menu.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/menu.h b/apps/menu.h
index 5aafe9bf9a..accfbda267 100644
--- a/apps/menu.h
+++ b/apps/menu.h
@@ -26,7 +26,8 @@ struct menu_items {
26 void (*function) (void); 26 void (*function) (void);
27}; 27};
28 28
29void menu_init(struct menu_items* items, int count); 29int menu_init(struct menu_items* items, int count);
30void menu_run(void); 30void menu_exit(int menu);
31void menu_run(int menu);
31 32
32#endif /* End __MENU_H__ */ 33#endif /* End __MENU_H__ */