From 9bf28debd8617bbc5b8e42c9a47a3eb8c78ef43d Mon Sep 17 00:00:00 2001 From: Maurus Cuelenaere Date: Sat, 13 Feb 2010 14:41:00 +0000 Subject: 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 --- apps/plugins/lua/rocklibc.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'apps/plugins/lua/rocklibc.h') diff --git a/apps/plugins/lua/rocklibc.h b/apps/plugins/lua/rocklibc.h index 78b83a6..9b68f42 100644 --- a/apps/plugins/lua/rocklibc.h +++ b/apps/plugins/lua/rocklibc.h @@ -28,10 +28,12 @@ #ifdef SIMULATOR #include +#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_ */ -- cgit v1.1