diff options
author | Denys Vlasenko | 2019-05-26 14:02:10 +0200 |
---|---|---|
committer | Denys Vlasenko | 2019-05-26 14:02:10 +0200 |
commit | 8b35f207bbd91a5bbca816dbdf5f8f33dd57f19d (patch) | |
tree | 8f25306a11f796fa31e9e2a6460addfdd955f39d /shell/math.h | |
parent | 9501bc7da5f560f3dae6f6a1d2b11efa9d5dfe47 (diff) | |
download | busybox-8b35f207bbd91a5bbca816dbdf5f8f33dd57f19d.zip busybox-8b35f207bbd91a5bbca816dbdf5f8f33dd57f19d.tar.gz |
shell: move all definitions of strto_arith_t() together
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/math.h')
-rw-r--r-- | shell/math.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/shell/math.h b/shell/math.h index ec9decb..41ef6e8 100644 --- a/shell/math.h +++ b/shell/math.h @@ -71,14 +71,6 @@ typedef long arith_t; # define ARITH_FMT "%ld" #endif -#if !ENABLE_FEATURE_SH_MATH_BASE -# if ENABLE_FEATURE_SH_MATH_64 -# define strto_arith_t strtoull -# else -# define strto_arith_t strtoul -# endif -#endif - typedef const char* FAST_FUNC (*arith_var_lookup_t)(const char *name); typedef void FAST_FUNC (*arith_var_set_t)(const char *name, const char *val); //typedef const char* FAST_FUNC (*arith_var_endofname_t)(const char *name); |