Browse Source

shell: remove FAST_FUNC from a static function

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Denys Vlasenko 3 years ago
parent
commit
841878e7ee
1 changed files with 2 additions and 2 deletions
  1. 2 2
      shell/math.c

+ 2 - 2
shell/math.c

@@ -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;