| 187 | void* (*PlatformSpecificMemset)(void* mem, int c, size_t size) = DosMemset; |
| 188 | |
| 189 | static void DosSrand(unsigned int seed) |
| 190 | { |
| 191 | srand(seed); |
| 192 | } |
| 193 | |
| 194 | static int DosRand() |
| 195 | { |
nothing calls this directly
no outgoing calls
no test coverage detected