shell: remove FAST_FUNC from a static function

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko 2020-10-01 00:57:05 +02:00
parent b1c7a66ca6
commit 841878e7ee

View File

@ -251,7 +251,7 @@ typedef struct remembered_name {
} remembered_name;
static arith_t FAST_FUNC
static arith_t
evaluate_string(arith_state_t *math_state, const char *expr);
static const char*
@ -582,7 +582,7 @@ static arith_t strto_arith_t(const char *nptr, char **endptr)
# endif
#endif
static arith_t FAST_FUNC
static arith_t
evaluate_string(arith_state_t *math_state, const char *expr)
{
operator lasttok;