summaryrefslogtreecommitdiff
path: root/gdb/ser-tcp.c
diff options
context:
space:
mode:
authorMark Mitchell <mark@codesourcery.com>2005-07-24 23:02:41 +0000
committerMark Mitchell <mark@codesourcery.com>2005-07-24 23:02:41 +0000
commit056d7646171dbac17e23b22aedb3472975781b43 (patch)
treea25fddac235a6797e63a5f8eaea330ba04f447e7 /gdb/ser-tcp.c
parent99356e902060ff5d87d28cd15cef3fdd7ea3cc7c (diff)
* ser-tcp.c (close): Define as a function-like macro on MinGW.
Diffstat (limited to 'gdb/ser-tcp.c')
-rw-r--r--gdb/ser-tcp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/ser-tcp.c b/gdb/ser-tcp.c
index 5b0b4311d4..c91e83cab4 100644
--- a/gdb/ser-tcp.c
+++ b/gdb/ser-tcp.c
@@ -39,7 +39,7 @@
#ifdef USE_WIN32API
#include <winsock2.h>
#define ETIMEDOUT WSAETIMEDOUT
-#define close closesocket
+#define close(fd) closesocket (fd)
#define ioctl ioctlsocket
#else
#include <netinet/in.h>