fix more red

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22433 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Nils Wallménius 2009-08-19 22:36:39 +00:00
parent 47608e06b3
commit 304c622899
3 changed files with 8 additions and 2 deletions

View file

@ -24,6 +24,7 @@
#include "backlight.h" #include "backlight.h"
#include "font.h" #include "font.h"
#include "lcd.h" #include "lcd.h"
#include "file.h"
#include "usb.h" #include "usb.h"
#include "system.h" #include "system.h"
#include "button.h" #include "button.h"

View file

@ -22,6 +22,7 @@
* KIND, either express or implied. * KIND, either express or implied.
* *
****************************************************************************/ ****************************************************************************/
#include <sys/types.h>
#include <string.h> #include <string.h>
#include "cpu.h" #include "cpu.h"
#include "system.h" #include "system.h"

View file

@ -23,8 +23,7 @@
#include "lcd.h" #include "lcd.h"
#include "lcd-charcell.h" #include "lcd-charcell.h"
#include "screendump.h" #include "screendump.h"
#include "general.h" #include "general.h"
#include "file.h"
#include <string.h> #include <string.h>
#include <unistd.h> #include <unistd.h>
#include <fcntl.h> #include <fcntl.h>
@ -33,6 +32,11 @@
#include "uisdl.h" #include "uisdl.h"
#include "lcd-sdl.h" #include "lcd-sdl.h"
/* can't include file.h here */
#ifndef MAX_PATH
#define MAX_PATH 260
#endif
/* extern functions, needed for screendump() */ /* extern functions, needed for screendump() */
extern int sim_creat(const char *name); extern int sim_creat(const char *name);