1
0
Fork 0
forked from len0rd/rockbox

Fix the remaining reds.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25858 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thomas Martitz 2010-05-06 22:33:57 +00:00
parent b91f15d842
commit 55e4fe73cc
8 changed files with 9 additions and 4 deletions

View file

@ -20,6 +20,7 @@
****************************************************************************/ ****************************************************************************/
#include <stdarg.h> #include <stdarg.h>
#include <stdio.h>
#include "config.h" #include "config.h"
#include "lcd.h" #include "lcd.h"
#include "font.h" #include "font.h"

View file

@ -19,6 +19,8 @@
* KIND, either express or implied. * KIND, either express or implied.
* *
****************************************************************************/ ****************************************************************************/
#include <stdio.h>
#include "config.h" #include "config.h"
#include "hwcompat.h" #include "hwcompat.h"
#include "stdarg.h" #include "stdarg.h"

View file

@ -18,7 +18,7 @@
* KIND, either express or implied. * KIND, either express or implied.
* *
****************************************************************************/ ****************************************************************************/
#include "inttypes.h" #include <sys/types.h>
#include "config.h" #include "config.h"
#include "cpu.h" #include "cpu.h"

View file

@ -18,7 +18,7 @@
* KIND, either express or implied. * KIND, either express or implied.
* *
****************************************************************************/ ****************************************************************************/
#include "inttypes.h" #include <sys/types.h>
#include "config.h" #include "config.h"
#include "cpu.h" #include "cpu.h"

View file

@ -18,6 +18,7 @@
* KIND, either express or implied. * KIND, either express or implied.
* *
****************************************************************************/ ****************************************************************************/
#include <sys/types.h>
#include "config.h" #include "config.h"
#include "hwcompat.h" #include "hwcompat.h"

View file

@ -22,6 +22,7 @@
* *
****************************************************************************/ ****************************************************************************/
#include <sys/types.h>
#include "config.h" #include "config.h"
#include "cpu.h" #include "cpu.h"
#include "string.h" #include "string.h"

View file

@ -21,7 +21,7 @@
****************************************************************************/ ****************************************************************************/
#include "config.h" #include "config.h"
#include "system.h" #include "system.h"
#include <sprintf.h> #include <stdio.h>
#include "debug.h" #include "debug.h"
#include "storage.h" #include "storage.h"
#include "adc.h" #include "adc.h"

View file

@ -18,12 +18,12 @@
* KIND, either express or implied. * KIND, either express or implied.
* *
****************************************************************************/ ****************************************************************************/
#include <stdio.h>
#include "config.h" #include "config.h"
#ifdef HAVE_LCD_CHARCELLS #ifdef HAVE_LCD_CHARCELLS
#include <lcd.h> #include <lcd.h>
#include <kernel.h> #include <kernel.h>
#include <sprintf.h>
#include <string.h> #include <string.h>
#include <debug.h> #include <debug.h>