mirror of
https://github.com/kanjitalk755/macemu.git
synced 2024-11-23 04:33:24 +00:00
close opened files and make sure to flush stdout on exit, this used to
cause weird results on windows otherwise
This commit is contained in:
parent
fcb323c511
commit
608c1f65bd
@ -257,5 +257,6 @@ int main(int argc, char **argv)
|
||||
}
|
||||
}
|
||||
printf("};\nint n_defs68k = %d;\n", no_insns);
|
||||
fflush(stdout);
|
||||
return 0;
|
||||
}
|
||||
|
@ -3069,5 +3069,6 @@ main (int argc, char **argv)
|
||||
free (table68k);
|
||||
fclose (stblfile);
|
||||
fclose (headerfile);
|
||||
fflush (stdout);
|
||||
return 0;
|
||||
}
|
||||
|
@ -2470,9 +2470,9 @@ int main (int argc, char **argv)
|
||||
* cputbl.h that way), but cpuopti can't cope. That could be fixed, but
|
||||
* I don't dare to touch the 68k version. */
|
||||
|
||||
headerfile = fopen ("cputbl.h", "wb");
|
||||
stblfile = fopen ("cpustbl.cpp", "wb");
|
||||
freopen ("cpuemu.cpp", "wb", stdout);
|
||||
headerfile = fopen ("cputbl.h", "w");
|
||||
stblfile = fopen ("cpustbl.cpp", "w");
|
||||
FILE *out = freopen ("cpuemu.cpp", "w", stdout);
|
||||
|
||||
generate_includes (stdout);
|
||||
generate_includes (stblfile);
|
||||
@ -2480,5 +2480,8 @@ int main (int argc, char **argv)
|
||||
generate_func ();
|
||||
|
||||
free (table68k);
|
||||
fclose (headerfile);
|
||||
fclose (stblfile);
|
||||
fflush (out);
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user