| 128 | const char* (*GetPlatformSpecificTimeString)() = TimeStringImplementation; |
| 129 | |
| 130 | int PlatformSpecificAtoI(const char* str) |
| 131 | { |
| 132 | return atoi(str); |
| 133 | } |
| 134 | |
| 135 | /* The ARMCC compiler will compile this function with C++ linkage, unless |
| 136 | * we specifically tell it to use C linkage again, in the function definiton. |
nothing calls this directly
no outgoing calls
no test coverage detected