aboutsummaryrefslogtreecommitdiff
path: root/shell/math.h
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2009-04-03 21:13:31 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2009-04-03 21:13:31 +0000
commitcc8289dc0498d50734770d06601756f7ddc55168 (patch)
tree4cb2b67a14d5aa6bc4a46cc14cf612d647f00752 /shell/math.h
parent60b392fd5bd49af2813b3970940e75516bf1e5dd (diff)
downloadbusybox-cc8289dc0498d50734770d06601756f7ddc55168.tar.gz
shell/math: randomconfig fix
Diffstat (limited to 'shell/math.h')
-rw-r--r--shell/math.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/shell/math.h b/shell/math.h
index a52680923..195fc20ba 100644
--- a/shell/math.h
+++ b/shell/math.h
@@ -76,13 +76,11 @@
#define _SHELL_MATH_
#if ENABLE_SH_MATH_SUPPORT_64
-typedef int64_t arith_t;
-#define arith_t_type long long
+typedef long long arith_t;
#define arith_t_fmt "%lld"
#define strto_arith_t strtoll
#else
typedef long arith_t;
-#define arith_t_type long
#define arith_t_fmt "%ld"
#define strto_arith_t strtol
#endif