summaryrefslogtreecommitdiff
path: root/gnulib/import/open.c
diff options
context:
space:
mode:
Diffstat (limited to 'gnulib/import/open.c')
-rw-r--r--gnulib/import/open.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/gnulib/import/open.c b/gnulib/import/open.c
index 751b42d7dcf..85991853318 100644
--- a/gnulib/import/open.c
+++ b/gnulib/import/open.c
@@ -1,5 +1,5 @@
/* Open a descriptor to a file.
- Copyright (C) 2007-2020 Free Software Foundation, Inc.
+ Copyright (C) 2007-2021 Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -30,7 +30,11 @@
static int
orig_open (const char *filename, int flags, mode_t mode)
{
+#if defined _WIN32 && !defined __CYGWIN__
+ return _open (filename, flags, mode);
+#else
return open (filename, flags, mode);
+#endif
}
/* Specification. */