mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
15 lines
256 B
C
Vendored
15 lines
256 B
C
Vendored
#ifndef __LIBMSVCRT_OS__
|
|
#error "This file should only be used in libmsvcrt-os.a"
|
|
#endif
|
|
|
|
#ifndef MSVCRT_H
|
|
#define MSVCRT_H
|
|
|
|
#include <winbase.h>
|
|
|
|
static inline HMODULE __mingw_get_msvcrt_handle(void)
|
|
{
|
|
return GetModuleHandleA("msvcrt.dll");
|
|
}
|
|
|
|
#endif
|