| 143 | void (*PlatformSpecificFClose)(PlatformSpecificFile file) = DosFClose; |
| 144 | |
| 145 | static int DosPutchar(int c) |
| 146 | { |
| 147 | return putchar(c); |
| 148 | } |
| 149 | |
| 150 | static void DosFlush() |
| 151 | { |
nothing calls this directly
no outgoing calls
no test coverage detected