diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-10-19 00:08:17 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-10-19 00:08:17 +0000 |
commit | f4c208937c997f9b65e77b9304a527b03349d219 (patch) | |
tree | b51104d70b155d6b841c1f30d3a7099a6e94dbc6 | |
parent | c2af1ee03667fbcf5bd456ea26e9f9e317a892a1 (diff) | |
download | busybox-w32-f4c208937c997f9b65e77b9304a527b03349d219.tar.gz busybox-w32-f4c208937c997f9b65e77b9304a527b03349d219.tar.bz2 busybox-w32-f4c208937c997f9b65e77b9304a527b03349d219.zip |
Remove the now unused ARITH_* defines
-Erik
-rw-r--r-- | ash.c | 28 | ||||
-rw-r--r-- | shell/ash.c | 28 |
2 files changed, 2 insertions, 54 deletions
@@ -1523,32 +1523,6 @@ __lookupalias(const char *name) { | |||
1523 | * written implementation written by Aaron Lehmann <aaronl@vitelus.com>. | 1523 | * written implementation written by Aaron Lehmann <aaronl@vitelus.com>. |
1524 | * This is now part of libbb, so that it can be used by all the shells | 1524 | * This is now part of libbb, so that it can be used by all the shells |
1525 | * in busybox. */ | 1525 | * in busybox. */ |
1526 | #define ARITH_NUM 257 | ||
1527 | #define ARITH_LPAREN 258 | ||
1528 | #define ARITH_RPAREN 259 | ||
1529 | #define ARITH_OR 260 | ||
1530 | #define ARITH_AND 261 | ||
1531 | #define ARITH_BOR 262 | ||
1532 | #define ARITH_BXOR 263 | ||
1533 | #define ARITH_BAND 264 | ||
1534 | #define ARITH_EQ 265 | ||
1535 | #define ARITH_NE 266 | ||
1536 | #define ARITH_LT 267 | ||
1537 | #define ARITH_GT 268 | ||
1538 | #define ARITH_GE 269 | ||
1539 | #define ARITH_LE 270 | ||
1540 | #define ARITH_LSHIFT 271 | ||
1541 | #define ARITH_RSHIFT 272 | ||
1542 | #define ARITH_ADD 273 | ||
1543 | #define ARITH_SUB 274 | ||
1544 | #define ARITH_MUL 275 | ||
1545 | #define ARITH_DIV 276 | ||
1546 | #define ARITH_REM 277 | ||
1547 | #define ARITH_UNARYMINUS 278 | ||
1548 | #define ARITH_UNARYPLUS 279 | ||
1549 | #define ARITH_NOT 280 | ||
1550 | #define ARITH_BNOT 281 | ||
1551 | |||
1552 | static void expari (int); | 1526 | static void expari (int); |
1553 | #endif | 1527 | #endif |
1554 | 1528 | ||
@@ -12754,7 +12728,7 @@ findvar(struct var **vpp, const char *name) | |||
12754 | /* | 12728 | /* |
12755 | * Copyright (c) 1999 Herbert Xu <herbert@debian.org> | 12729 | * Copyright (c) 1999 Herbert Xu <herbert@debian.org> |
12756 | * This file contains code for the times builtin. | 12730 | * This file contains code for the times builtin. |
12757 | * $Id: ash.c,v 1.26 2001/10/18 04:11:38 andersen Exp $ | 12731 | * $Id: ash.c,v 1.27 2001/10/19 00:08:17 andersen Exp $ |
12758 | */ | 12732 | */ |
12759 | static int timescmd (int argc, char **argv) | 12733 | static int timescmd (int argc, char **argv) |
12760 | { | 12734 | { |
diff --git a/shell/ash.c b/shell/ash.c index a65275893..5933b1518 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -1523,32 +1523,6 @@ __lookupalias(const char *name) { | |||
1523 | * written implementation written by Aaron Lehmann <aaronl@vitelus.com>. | 1523 | * written implementation written by Aaron Lehmann <aaronl@vitelus.com>. |
1524 | * This is now part of libbb, so that it can be used by all the shells | 1524 | * This is now part of libbb, so that it can be used by all the shells |
1525 | * in busybox. */ | 1525 | * in busybox. */ |
1526 | #define ARITH_NUM 257 | ||
1527 | #define ARITH_LPAREN 258 | ||
1528 | #define ARITH_RPAREN 259 | ||
1529 | #define ARITH_OR 260 | ||
1530 | #define ARITH_AND 261 | ||
1531 | #define ARITH_BOR 262 | ||
1532 | #define ARITH_BXOR 263 | ||
1533 | #define ARITH_BAND 264 | ||
1534 | #define ARITH_EQ 265 | ||
1535 | #define ARITH_NE 266 | ||
1536 | #define ARITH_LT 267 | ||
1537 | #define ARITH_GT 268 | ||
1538 | #define ARITH_GE 269 | ||
1539 | #define ARITH_LE 270 | ||
1540 | #define ARITH_LSHIFT 271 | ||
1541 | #define ARITH_RSHIFT 272 | ||
1542 | #define ARITH_ADD 273 | ||
1543 | #define ARITH_SUB 274 | ||
1544 | #define ARITH_MUL 275 | ||
1545 | #define ARITH_DIV 276 | ||
1546 | #define ARITH_REM 277 | ||
1547 | #define ARITH_UNARYMINUS 278 | ||
1548 | #define ARITH_UNARYPLUS 279 | ||
1549 | #define ARITH_NOT 280 | ||
1550 | #define ARITH_BNOT 281 | ||
1551 | |||
1552 | static void expari (int); | 1526 | static void expari (int); |
1553 | #endif | 1527 | #endif |
1554 | 1528 | ||
@@ -12754,7 +12728,7 @@ findvar(struct var **vpp, const char *name) | |||
12754 | /* | 12728 | /* |
12755 | * Copyright (c) 1999 Herbert Xu <herbert@debian.org> | 12729 | * Copyright (c) 1999 Herbert Xu <herbert@debian.org> |
12756 | * This file contains code for the times builtin. | 12730 | * This file contains code for the times builtin. |
12757 | * $Id: ash.c,v 1.26 2001/10/18 04:11:38 andersen Exp $ | 12731 | * $Id: ash.c,v 1.27 2001/10/19 00:08:17 andersen Exp $ |
12758 | */ | 12732 | */ |
12759 | static int timescmd (int argc, char **argv) | 12733 | static int timescmd (int argc, char **argv) |
12760 | { | 12734 | { |