mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
Add an advanced build option to force compiling and linking our reduced C library (probably useful for the sim).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27059 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
be66e4d642
commit
f32bd593c4
11 changed files with 38 additions and 16 deletions
|
@ -35,6 +35,7 @@ QUICKREF
|
|||
|
||||
#include <string.h>
|
||||
#include <limits.h>
|
||||
#include "_ansi.h" /* for _DEFUN */
|
||||
|
||||
/* Nonzero if X is not aligned on a "long" boundary. */
|
||||
#define UNALIGNED(X) ((long)X & (sizeof (long) - 1))
|
||||
|
|
|
@ -37,7 +37,7 @@ QUICKREF
|
|||
*/
|
||||
|
||||
#include <string.h>
|
||||
|
||||
#include "_ansi.h" /* for _DEFUN */
|
||||
|
||||
/* Nonzero if either X or Y is not aligned on a "long" boundary. */
|
||||
#define UNALIGNED(X, Y) \
|
||||
|
|
|
@ -33,7 +33,7 @@ QUICKREF
|
|||
*/
|
||||
|
||||
#include "config.h"
|
||||
#include <_ansi.h>
|
||||
#include "_ansi.h" /* for _DEFUN */
|
||||
#include <string.h>
|
||||
|
||||
/* Nonzero if either X or Y is not aligned on a "long" boundary. */
|
||||
|
|
|
@ -35,6 +35,7 @@ QUICKREF
|
|||
|
||||
#include <string.h>
|
||||
#include <limits.h>
|
||||
#include "_ansi.h" /* for _DEFUN */
|
||||
|
||||
/* Nonzero if X is not aligned on a "long" boundary. */
|
||||
#define UNALIGNED(X) ((long)X & (sizeof (long) - 1))
|
||||
|
|
|
@ -37,6 +37,7 @@ QUICKREF
|
|||
|
||||
#include <string.h>
|
||||
#include <limits.h>
|
||||
#include "_ansi.h" /* for _DEFUN */
|
||||
|
||||
/* Nonzero if either X or Y is not aligned on a "long" boundary. */
|
||||
#define UNALIGNED(X, Y) \
|
||||
|
|
|
@ -34,6 +34,7 @@ QUICKREF
|
|||
|
||||
#include <string.h>
|
||||
#include <limits.h>
|
||||
#include "_ansi.h" /* for _DEFUN */
|
||||
|
||||
/*SUPPRESS 560*/
|
||||
/*SUPPRESS 530*/
|
||||
|
|
|
@ -32,7 +32,7 @@ QUICKREF
|
|||
*/
|
||||
|
||||
#include "config.h"
|
||||
#include <_ansi.h>
|
||||
#include "_ansi.h"
|
||||
#include <string.h>
|
||||
#include <limits.h>
|
||||
|
||||
|
|
|
@ -38,6 +38,7 @@ QUICKREF
|
|||
|
||||
#include <string.h>
|
||||
#include <limits.h>
|
||||
#include "_ansi.h" /* for _DEFUN */
|
||||
|
||||
/* Nonzero if either X or Y is not aligned on a "long" boundary. */
|
||||
#define UNALIGNED(X, Y) \
|
||||
|
|
|
@ -34,6 +34,7 @@ QUICKREF
|
|||
*/
|
||||
|
||||
#include <string.h>
|
||||
#include "_ansi.h" /* for _DEFUN */
|
||||
|
||||
char *
|
||||
_DEFUN (strrchr, (s, i),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue