[UCRT] Make includes unix compatible

This commit is contained in:
Timo Kreuzer 2024-11-27 13:58:34 +02:00
parent 90dad446b7
commit 2eb3149565
5 changed files with 8 additions and 8 deletions

View file

@ -7,8 +7,8 @@
// process started execution.
//
#include <corecrt_internal_time.h>
#include <sys\timeb.h>
#include <sys\types.h>
#include <sys/timeb.h>
#include <sys/types.h>
@ -51,7 +51,7 @@ extern "C" int __cdecl __acrt_initialize_clock()
!QueryPerformanceCounter(&local_start_count) ||
local_frequency.QuadPart == 0)
{
source_frequency = -1;
source_frequency = -1;
start_count = -1;
return 0;
}