Only variable declarations at top of block

This commit is contained in:
Aaron Marcher 2018-05-07 15:57:32 +02:00
parent 6123f482e3
commit 666f285201
1 changed files with 2 additions and 1 deletions

View File

@ -53,9 +53,10 @@ main(int argc, char *argv[])
struct sigaction act;
struct timespec start, current, diff, intspec, wait;
size_t i, len;
int sflag = 0;
int sflag;
char status[MAXLEN];
sflag = 0;
ARGBEGIN {
case 's':
sflag = 1;