| 134 | } |
| 135 | |
| 136 | static void DosFClose(PlatformSpecificFile file) |
| 137 | { |
| 138 | fclose((FILE*)file); |
| 139 | } |
| 140 | |
| 141 | PlatformSpecificFile (*PlatformSpecificFOpen)(const char* filename, const char* flag) = DosFOpen; |
| 142 | void (*PlatformSpecificFPuts)(const char* str, PlatformSpecificFile file) = DosFPuts; |
nothing calls this directly
no outgoing calls
no test coverage detected