exit from main instead of return

This commit is contained in:
ceriel 1989-08-22 11:46:56 +00:00
parent 73246f3824
commit 18439ffa3f

View file

@ -265,7 +265,7 @@ main(argc, argv)
header();
if ( outputfile_created ) chmod(argv[2],0755);
return 0;
exit(0);
}
#define shortcvt(val, p) (*p++ = val, *p++ = val >> 8)