| 190 | } |
| 191 | |
| 192 | static void* C2000MemCpy(void* s1, const void* s2, size_t size) |
| 193 | { |
| 194 | return (void*)far_memlcpy((long)s1, (long)s2, size); |
| 195 | } |
| 196 | |
| 197 | static void* C2000Memset(void* mem, int c, size_t size) |
| 198 | { |
nothing calls this directly
no outgoing calls
no test coverage detected