zig/lib/libc/mingw/misc/difftime.c
Andrew Kelley 49d1a4c562 move lib dirs to lib subdir
also start prefering NtDll API. so far:
 * NtQueryInformationFile
 * NtClose

adds a performance workaround for windows unicode conversion. but that
should probably be removed before merging
2019-07-15 17:54:50 -04:00

22 lines
521 B
C

#define __CRT__NO_INLINE
#include <time.h>
#include <memory.h>
/* FIXME: Relying on _USE_32BIT_TIME_T, which is a user-macro,
during CRT compilation is plainly broken. Need an appropriate
implementation to provide users the ability of compiling the
CRT only with 32-bit time_t behavior. */
#ifndef _USE_32BIT_TIME_T
double __cdecl difftime(time_t _Time1,time_t _Time2)
{
return _difftime64(_Time1,_Time2);
}
#else
double __cdecl difftime(time_t _Time1,time_t _Time2)
{
return _difftime32(_Time1,_Time2);
}
#endif