aboutsummaryrefslogtreecommitdiffstats
path: root/win32/win32.c
diff options
context:
space:
mode:
Diffstat (limited to 'win32/win32.c')
-rw-r--r--win32/win32.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/win32/win32.c b/win32/win32.c
index 8827f3b593..7d5fbda63a 100644
--- a/win32/win32.c
+++ b/win32/win32.c
@@ -1715,13 +1715,13 @@ set_pioinfo_extra(void)
{
int fd;
- fd = open("NUL", O_RDONLY);
+ fd = _open("NUL", O_RDONLY);
for (pioinfo_extra = 0; pioinfo_extra <= 64; pioinfo_extra += sizeof(void *)) {
if (_osfhnd(fd) == _get_osfhandle(fd)) {
break;
}
}
- close(fd);
+ _close(fd);
if (pioinfo_extra > 64) {
/* not found, maybe something wrong... */