forked from len0rd/rockbox
Major cleanup of checkwps - fix all warnings and add a script to build versions for all supported targets (plus some unsupported ones). You now need to run the version of checkwps that matches the device your WPS is for.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16831 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
d75bb78fda
commit
78d29f535f
16 changed files with 133 additions and 24 deletions
12
apps/misc.c
12
apps/misc.c
|
|
@ -18,14 +18,16 @@
|
|||
****************************************************************************/
|
||||
#include <stdlib.h>
|
||||
#include <ctype.h>
|
||||
#include "config.h"
|
||||
#include "lcd.h"
|
||||
#include "file.h"
|
||||
#ifdef __PCTOOL__
|
||||
#include <stdarg.h>
|
||||
#else
|
||||
#include "sprintf.h"
|
||||
#ifndef __PCTOOL__
|
||||
#include "lang.h"
|
||||
#include "string.h"
|
||||
#include "config.h"
|
||||
#include "file.h"
|
||||
#include "dir.h"
|
||||
#include "lcd.h"
|
||||
#include "lcd-remote.h"
|
||||
#include "errno.h"
|
||||
#include "system.h"
|
||||
|
|
@ -49,7 +51,6 @@
|
|||
#include "tagcache.h"
|
||||
#include "scrobbler.h"
|
||||
#include "sound.h"
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_MMC
|
||||
#include "ata_mmc.h"
|
||||
|
|
@ -77,7 +78,6 @@
|
|||
#endif
|
||||
#endif
|
||||
|
||||
#ifndef __PCTOOL__
|
||||
/* Format a large-range value for output, using the appropriate unit so that
|
||||
* the displayed value is in the range 1 <= display < 1000 (1024 for "binary"
|
||||
* units) if possible, and 3 significant digits are shown. If a buffer is
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue