Commit 3167f68f authored by Ulf Möller's avatar Ulf Möller
Browse files

The main() return value is a program's exit code.

parent d52c9734
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -795,8 +795,7 @@ plain[8+4], plain[8+5], plain[8+6], plain[8+7]);
		err=1;
		}
	printf("\n");
	exit(err);
	return(err); /* Never reached, but keeps compilers happy */
	return(err);
	}

static char *pt(unsigned char *p)