aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2004-06-25 07:05:13 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2004-06-25 07:05:13 +0000
commit5f2a23c3c6f1a18bc8985c1cb4e860217d4d8467 (patch)
treec78f9eb70e227aea8b7adbb0f55e15e61651227a
parent5275b1e49f62c273f5d3ef14f093eb8661f54843 (diff)
downloadbusybox-w32-5f2a23c3c6f1a18bc8985c1cb4e860217d4d8467.tar.gz
busybox-w32-5f2a23c3c6f1a18bc8985c1cb4e860217d4d8467.tar.bz2
busybox-w32-5f2a23c3c6f1a18bc8985c1cb4e860217d4d8467.zip
Fix compile error when math support disabled.
-rw-r--r--shell/ash.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c
index 0f951e84d..da78965ea 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -1445,12 +1445,13 @@ static void changepath(const char *);
1445static void defun(char *, union node *); 1445static void defun(char *, union node *);
1446static void unsetfunc(const char *); 1446static void unsetfunc(const char *);
1447 1447
1448#ifdef CONFIG_ASH_MATH_SUPPORT
1449#ifdef CONFIG_ASH_MATH_SUPPORT_64 1448#ifdef CONFIG_ASH_MATH_SUPPORT_64
1450typedef int64_t arith_t; 1449typedef int64_t arith_t;
1451#else 1450#else
1452typedef long arith_t; 1451typedef long arith_t;
1453#endif 1452#endif
1453
1454#ifdef CONFIG_ASH_MATH_SUPPORT
1454static arith_t dash_arith(const char *); 1455static arith_t dash_arith(const char *);
1455static arith_t arith(const char *expr, int *perrcode); 1456static arith_t arith(const char *expr, int *perrcode);
1456#endif 1457#endif