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

This commit is contained in:
Ulf Möller 2000-02-25 16:04:52 +00:00
parent d52c973498
commit 3167f68faf

View file

@ -795,8 +795,7 @@ plain[8+4], plain[8+5], plain[8+6], plain[8+7]);
err=1; err=1;
} }
printf("\n"); printf("\n");
exit(err); return(err);
return(err); /* Never reached, but keeps compilers happy */
} }
static char *pt(unsigned char *p) static char *pt(unsigned char *p)