| 131 | extern int (*PlatformSpecificVSNprintf)(char *, size_t, const char*, va_list) = vsnprintf; |
| 132 | |
| 133 | PlatformSpecificFile C2000FOpen(const char* filename, const char* flag) |
| 134 | { |
| 135 | return fopen(filename, flag); |
| 136 | } |
| 137 | |
| 138 | static void C2000FPuts(const char* str, PlatformSpecificFile file) |
| 139 | { |
nothing calls this directly
no outgoing calls
no test coverage detected