* ser-tcp.c (close): Define as a function-like macro on MinGW.
authorMark Mitchell <mark@codesourcery.com>
Sun, 24 Jul 2005 23:02:41 +0000 (23:02 +0000)
committerMark Mitchell <mark@codesourcery.com>
Sun, 24 Jul 2005 23:02:41 +0000 (23:02 +0000)
gdb/ChangeLog
gdb/ser-tcp.c

index 65353cd..e9ea62a 100644 (file)
@@ -1,3 +1,7 @@
+2005-07-24  Mark Mitchell  <mark@codesourcery.com>
+
+       * ser-tcp.c (close): Define as a function-like macro on MinGW.
+
 2005-07-21  Eric Christopher  <echristo@apple.com>
 
        * MAINTAINERS (Misc): Update affiliation.
index 5b0b431..c91e83c 100644 (file)
@@ -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>