| 11 | #include <stdio.h> |
| 12 | |
| 13 | void sleepFor(unsigned seconds) |
| 14 | { |
| 15 | #if defined(_WIN32) |
| 16 | Sleep(seconds * 1000); |
| 17 | #else |
| 18 | sleep(seconds); |
| 19 | #endif |
| 20 | } |
| 21 | |
| 22 | int main(int argc, char** argv) |
| 23 | { |
no outgoing calls
no test coverage detected
searching dependent graphs…