summaryrefslogtreecommitdiff
path: root/apps/plugins/lua/strtol.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/lua/strtol.c')
-rw-r--r--apps/plugins/lua/strtol.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/lua/strtol.c b/apps/plugins/lua/strtol.c
index 184951b844..3dd29b6b57 100644
--- a/apps/plugins/lua/strtol.c
+++ b/apps/plugins/lua/strtol.c
@@ -2,7 +2,7 @@
2 2
3extern unsigned long int strtoul(const char *ptr, char **endptr, int base); 3extern unsigned long int strtoul(const char *ptr, char **endptr, int base);
4 4
5#define ABS_LONG_MIN 2147483648UL 5#define ABS_LONG_MIN LONG_MAX
6long int strtol(const char *nptr, char **endptr, int base) 6long int strtol(const char *nptr, char **endptr, int base)
7{ 7{
8 int neg=0; 8 int neg=0;