killed off a warning

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@998 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Stenberg 2002-06-14 10:39:11 +00:00
parent 698ebc8412
commit 91f743f17e
2 changed files with 5 additions and 0 deletions

View file

@ -20,6 +20,8 @@
#ifndef __MENU_H__
#define __MENU_H__
#include <stdbool.h>
struct menu_items {
int id;
char *desc;
@ -30,4 +32,6 @@ int menu_init(struct menu_items* items, int count);
void menu_exit(int menu);
void menu_run(int menu);
void put_cursorxy(int x, int y, bool on);
#endif /* End __MENU_H__ */

View file

@ -33,6 +33,7 @@
#include "sprintf.h"
#include "mpeg.h"
#include "playlist.h"
#include "menu.h"
#ifdef HAVE_LCD_BITMAP
#include "icons.h"