Skip to content
Snippets Groups Projects
Commit 7d8f7d96 authored by Sebastian Graf's avatar Sebastian Graf Committed by Marge Bot
Browse files

Include time.h in conc059_c (#19431)

The test probably could have used `usleep` from `unistd.h` instead, but
this seemed like the simplest solution.

Fixes #19431.
parent 31ee48dc
No related branches found
No related tags found
No related merge requests found
......@@ -7,6 +7,8 @@
#include <stdio.h>
#if mingw32_HOST_OS
#include <windows.h>
#else
#include <time.h> // nanosleep
#endif
void millisleep(int milliseconds);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment