aboutsummaryrefslogtreecommitdiff
path: root/coreutils/echo.c
diff options
context:
space:
mode:
author"Robert P. J. Day" <rpjday@mindspring.com>2006-07-01 13:08:46 +0000
committer"Robert P. J. Day" <rpjday@mindspring.com>2006-07-01 13:08:46 +0000
commit68229837ff1e690190d51b74b281cfe999220e6d (patch)
tree7cbdeded060f86cefc4edd006c2538c2a2a4ea97 /coreutils/echo.c
parentf350160963c4412bb76f3e8cca669529fdde81d1 (diff)
downloadbusybox-w32-68229837ff1e690190d51b74b281cfe999220e6d.tar.gz
busybox-w32-68229837ff1e690190d51b74b281cfe999220e6d.tar.bz2
busybox-w32-68229837ff1e690190d51b74b281cfe999220e6d.zip
Remove all usage of the "register" storage class specifier.
Diffstat (limited to 'coreutils/echo.c')
-rw-r--r--coreutils/echo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/echo.c b/coreutils/echo.c
index a673bb07a..d278c1143 100644
--- a/coreutils/echo.c
+++ b/coreutils/echo.c
@@ -71,7 +71,7 @@ int bb_echo(int ATTRIBUTE_UNUSED argc, char **argv)
71just_echo: 71just_echo:
72#endif 72#endif
73 while (*argv) { 73 while (*argv) {
74 register int c; 74 int c;
75 75
76 while ((c = *(*argv)++)) { 76 while ((c = *(*argv)++)) {
77 if (c == eflag) { /* Check for escape seq. */ 77 if (c == eflag) { /* Check for escape seq. */