Use C stdio functions for score files and save files.

Switching from Unix file descriptor operations to C standard FILE*
functions will reduce portability problems.
This commit is contained in:
John "Elwin" Edwards 2017-09-15 19:57:54 -04:00
parent f8d1f422c8
commit c661fd79d4
33 changed files with 426 additions and 439 deletions

View file

@ -497,7 +497,7 @@ get_score(char *optstr, WINDOW *win)
status = get_str(optstr, win);
if (status == NORM && strcmp(old_score_file, optstr))
{
md_reopen_score();
reopen_score();
}
return status;
}