diff options
Diffstat (limited to 'src/os-win32.h')
-rw-r--r-- | src/os-win32.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/os-win32.h b/src/os-win32.h index c7c0bae..08399dd 100644 --- a/src/os-win32.h +++ b/src/os-win32.h @@ -40,6 +40,8 @@ typedef unsigned short os_char; // ucrt defines __stat64 to _stat64. we want _wstat64 to be the actual function #define _stat64(path, buf) _wstat64(path, buf) #define os_stat _stat64 +#define os_mkdir _wmkdir +#define os_unlink _wunlink #define os_getenv _wgetenv #define os_getcwd _wgetcwd |