zig/lib/libc/mingw/stdio/_ftime.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

20 lines
501 B
C

#define __CRT__NO_INLINE
#include <sys/stat.h>
#include <sys/timeb.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. */
#if defined(_USE_32BIT_TIME_T)
void __cdecl ftime (struct timeb *b)
{
return _ftime ((struct __timeb32 *)b);
}
#else
void __cdecl ftime (struct timeb *b)
{
_ftime64((struct __timeb64 *)b);
}
#endif