From cc8289dc0498d50734770d06601756f7ddc55168 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Fri, 3 Apr 2009 21:13:31 +0000 Subject: shell/math: randomconfig fix --- shell/math.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'shell/math.h') 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 -- cgit v1.2.3