From 68229837ff1e690190d51b74b281cfe999220e6d Mon Sep 17 00:00:00 2001 From: "\"Robert P. J. Day\"" Date: Sat, 1 Jul 2006 13:08:46 +0000 Subject: Remove all usage of the "register" storage class specifier. --- coreutils/echo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coreutils/echo.c') 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) just_echo: #endif while (*argv) { - register int c; + int c; while ((c = *(*argv)++)) { if (c == eflag) { /* Check for escape seq. */ -- cgit v1.2.3