| 124 | int (*PlatformSpecificVSNprintf)(char *, size_t, const char*, va_list) = DosVSNprintf; |
| 125 | |
| 126 | PlatformSpecificFile DosFOpen(const char* filename, const char* flag) |
| 127 | { |
| 128 | return fopen(filename, flag); |
| 129 | } |
| 130 | |
| 131 | static void DosFPuts(const char* str, PlatformSpecificFile file) |
| 132 | { |
nothing calls this directly
no outgoing calls
no test coverage detected