forked from len0rd/rockbox
Fix FS#11007: Lua didn't parse negative numbers correct when reading from files
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24632 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
4c658f74a7
commit
9bf28debd8
4 changed files with 297 additions and 13 deletions
|
@ -28,10 +28,12 @@
|
|||
|
||||
#ifdef SIMULATOR
|
||||
#include <errno.h>
|
||||
#define PREFIX(_x_) sim_ ## _x_
|
||||
#else
|
||||
extern int errno;
|
||||
#define EINVAL 22 /* Invalid argument */
|
||||
#define ERANGE 34 /* Math result not representable */
|
||||
#define PREFIX
|
||||
#endif
|
||||
|
||||
#define __likely LIKELY
|
||||
|
@ -41,5 +43,7 @@ extern int errno;
|
|||
#define memcmp rb->memcmp
|
||||
#define strlen rb->strlen
|
||||
|
||||
extern int PREFIX(fscanf)(int fd, const char *fmt, ...);
|
||||
|
||||
#endif /* _ROCKLIBC_H_ */
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue