diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2020-10-01 00:57:05 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2021-01-01 14:30:58 +0100 |
commit | 06f7cf148767a0b521bd296c276df5169add5cfb (patch) | |
tree | f9a0f1671964e4507fe87223268960eeb931df07 | |
parent | 58cbf385e0b4a3fdcd870bfbc57d6fd5d4dff875 (diff) | |
download | busybox-w32-06f7cf148767a0b521bd296c276df5169add5cfb.tar.gz busybox-w32-06f7cf148767a0b521bd296c276df5169add5cfb.tar.bz2 busybox-w32-06f7cf148767a0b521bd296c276df5169add5cfb.zip |
shell: remove FAST_FUNC from a static function
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | shell/math.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/math.c b/shell/math.c index aac5017d0..2942cdd26 100644 --- a/shell/math.c +++ b/shell/math.c | |||
@@ -251,7 +251,7 @@ typedef struct remembered_name { | |||
251 | } remembered_name; | 251 | } remembered_name; |
252 | 252 | ||
253 | 253 | ||
254 | static arith_t FAST_FUNC | 254 | static arith_t |
255 | evaluate_string(arith_state_t *math_state, const char *expr); | 255 | evaluate_string(arith_state_t *math_state, const char *expr); |
256 | 256 | ||
257 | static const char* | 257 | static const char* |
@@ -582,7 +582,7 @@ static arith_t strto_arith_t(const char *nptr, char **endptr) | |||
582 | # endif | 582 | # endif |
583 | #endif | 583 | #endif |
584 | 584 | ||
585 | static arith_t FAST_FUNC | 585 | static arith_t |
586 | evaluate_string(arith_state_t *math_state, const char *expr) | 586 | evaluate_string(arith_state_t *math_state, const char *expr) |
587 | { | 587 | { |
588 | operator lasttok; | 588 | operator lasttok; |