From: Glenn L McGrath Date: Fri, 25 Jun 2004 07:05:13 +0000 (-0000) Subject: Fix compile error when math support disabled. X-Git-Tag: 1_00_rc1~19 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=5f2a23c3c6f1a18bc8985c1cb4e860217d4d8467;p=oweals%2Fbusybox.git Fix compile error when math support disabled. --- 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 *); static void defun(char *, union node *); static void unsetfunc(const char *); -#ifdef CONFIG_ASH_MATH_SUPPORT #ifdef CONFIG_ASH_MATH_SUPPORT_64 typedef int64_t arith_t; #else typedef long arith_t; #endif + +#ifdef CONFIG_ASH_MATH_SUPPORT static arith_t dash_arith(const char *); static arith_t arith(const char *expr, int *perrcode); #endif