Commit 052f99ab authored by windyakin's avatar windyakin Committed by Michael Grunder
Browse files

Ensure functionality without _MSC_VER definition

parent ded32c7d
......@@ -78,7 +78,7 @@ static int tests = 0, fails = 0, skips = 0;
static void millisleep(int ms)
{
#if _MSC_VER
#ifdef _MSC_VER
Sleep(ms);
#else
usleep(ms*1000);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment