1
0
Fork 0
forked from len0rd/rockbox

This is my initial attempt to get rid of the newlib headers requirement,

for gcc built without newlib.


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1017 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Stenberg 2002-06-15 15:49:32 +00:00
parent 4f58f6197d
commit 7da93d58fd
9 changed files with 457 additions and 0 deletions

35
firmware/include/stdlib.h Normal file
View file

@ -0,0 +1,35 @@
/*
* stdlib.h
*
* Definitions for common types, variables, and functions.
*/
#ifndef _STDLIB_H_
#ifdef __cplusplus
extern "C" {
#endif
#define _STDLIB_H_
#include "_ansi.h"
#define __need_size_t
#define __need_wchar_t
#include <stddef.h>
#ifndef NULL
#define NULL 0
#endif
#define EXIT_FAILURE 1
#define EXIT_SUCCESS 0
extern __IMPORT int __mb_cur_max;
#define MB_CUR_MAX __mb_cur_max
_VOID _EXFUN(qsort,(_PTR __base, size_t __nmemb, size_t __size, int(*_compar)(const _PTR, const _PTR)));
#ifdef __cplusplus
}
#endif
#endif /* _STDLIB_H_ */