summaryrefslogtreecommitdiff
path: root/lib/sys_ioctl.in.h
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2010-04-04 10:32:19 +0200
committerBruno Haible <bruno@clisp.org>2010-04-04 10:32:19 +0200
commit1a56eb400a72d56a160d6d3f1c3a7577b7019cb0 (patch)
treefbeec19254776110ab371517ff5cdd1cde694fc0 /lib/sys_ioctl.in.h
parentee1e85f8f9f5667aace29d549411e5a78eb86ed1 (diff)
downloadgnulib-1a56eb400a72d56a160d6d3f1c3a7577b7019cb0.tar.gz
ioctl: Fix C++ test error on mingw.
Diffstat (limited to 'lib/sys_ioctl.in.h')
-rw-r--r--lib/sys_ioctl.in.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/sys_ioctl.in.h b/lib/sys_ioctl.in.h
index 6066ecf72d..8b0e2361a9 100644
--- a/lib/sys_ioctl.in.h
+++ b/lib/sys_ioctl.in.h
@@ -44,7 +44,7 @@
/* Declare overridden functions. */
#if @GNULIB_IOCTL@
-# if @SYS_IOCTL_H_HAVE_WINSOCK2_H@ || @REPLACE_IOCTL@
+# if @REPLACE_IOCTL@
# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
# undef ioctl
# define ioctl rpl_ioctl
@@ -54,8 +54,10 @@ _GL_FUNCDECL_RPL (ioctl, int,
_GL_CXXALIAS_RPL (ioctl, int,
(int fd, int request, ... /* {void *,char *} arg */));
# else
+# if @SYS_IOCTL_H_HAVE_WINSOCK2_H@ || 1
_GL_FUNCDECL_SYS (ioctl, int,
(int fd, int request, ... /* {void *,char *} arg */));
+# endif
_GL_CXXALIAS_SYS (ioctl, int,
(int fd, int request, ... /* {void *,char *} arg */));
# endif