diff options
author | marha <marha@users.sourceforge.net> | 2009-11-18 14:01:19 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2009-11-18 14:01:19 +0000 |
commit | eae596341c64067cf46dbd2e5bc2e8db42fd0be1 (patch) | |
tree | 03c5e534d3e858c76b62cd5857337c7fd669abb7 /libxcb/src/xcb_util.c | |
parent | 44675ffa5e4590617f8c016ff36ccb3fb3cb4129 (diff) | |
download | vcxsrv-eae596341c64067cf46dbd2e5bc2e8db42fd0be1.tar.gz vcxsrv-eae596341c64067cf46dbd2e5bc2e8db42fd0be1.tar.bz2 vcxsrv-eae596341c64067cf46dbd2e5bc2e8db42fd0be1.zip |
Used closesocket in stead of close for closing a socket on windows.
Diffstat (limited to 'libxcb/src/xcb_util.c')
-rw-r--r-- | libxcb/src/xcb_util.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libxcb/src/xcb_util.c b/libxcb/src/xcb_util.c index 97642c04d..1ab60b9e8 100644 --- a/libxcb/src/xcb_util.c +++ b/libxcb/src/xcb_util.c @@ -47,6 +47,10 @@ #include "xcbext.h" #include "xcbint.h" +#ifdef _MSC_VER +#define close(fd) closesocket(fd) +#endif + static const int error_connection = 1; int xcb_popcount(uint32_t mask) |