| 194 | } |
| 195 | |
| 196 | int |
| 197 | create_savefile(void) |
| 198 | { |
| 199 | int fd; |
| 200 | |
| 201 | #if defined(MICRO) || defined(WIN32) || defined(MSDOS) |
| 202 | fd = open(savename, O_WRONLY | O_BINARY | O_CREAT | O_TRUNC, FCMASK); |
| 203 | #else |
| 204 | fd = creat(savename, FCMASK); |
| 205 | #endif |
| 206 | return fd; |
| 207 | } |
| 208 | |
| 209 | int |
| 210 | restore_savefile(char *basename) |
no test coverage detected