From: Alan Cox Date: Thu, 7 Dec 2017 15:11:52 +0000 (+0000) Subject: seq: move initializers to SDCC is happy X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=b48799d1eaf7e56e6632a857ab57c43987f32aae;p=FUZIX.git seq: move initializers to SDCC is happy --- diff --git a/Applications/util/seq.c b/Applications/util/seq.c index 8e286c7b..6bd1f96e 100644 --- a/Applications/util/seq.c +++ b/Applications/util/seq.c @@ -48,13 +48,13 @@ static long chk_strtol(const char *s) int main(int argc, char **argv) { char **argp = argv; - appname = argv[0]; long start = 1; long step = 1; long end; const char *sep = newline; bool printed = false; + appname = argv[0]; while(*++argp && (*argp)[0] == '-' && ((*argp)[1] < '0' || (*argp)[1] > '9')) { --argc;