| 175 | extern void (*PlatformSpecificFlush)(void) = CL2000Flush; |
| 176 | |
| 177 | static void* C2000Malloc(size_t size) |
| 178 | { |
| 179 | return (void*)far_malloc((unsigned long)size); |
| 180 | } |
| 181 | |
| 182 | static void* C2000Realloc (void* memory, size_t size) |
| 183 | { |
nothing calls this directly
no outgoing calls
no test coverage detected