aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--shell/ash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/ash.c b/shell/ash.c
index 5072528f4..5ebc8aced 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -1446,7 +1446,7 @@ static void defun(char *, union node *);
1446static void unsetfunc(const char *); 1446static void unsetfunc(const char *);
1447 1447
1448#ifdef CONFIG_ASH_MATH_SUPPORT 1448#ifdef CONFIG_ASH_MATH_SUPPORT
1449static int dash_arith(const char *); 1449static long dash_arith(const char *);
1450#endif 1450#endif
1451 1451
1452#ifdef CONFIG_ASH_RANDOM_SUPPORT 1452#ifdef CONFIG_ASH_RANDOM_SUPPORT
@@ -12475,7 +12475,7 @@ static int timescmd(int ac, char **av)
12475} 12475}
12476 12476
12477#ifdef CONFIG_ASH_MATH_SUPPORT 12477#ifdef CONFIG_ASH_MATH_SUPPORT
12478static int 12478static long
12479dash_arith(const char *s) 12479dash_arith(const char *s)
12480{ 12480{
12481 long result; 12481 long result;