aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2022-06-28 15:00:52 +0100
committerfanquake <fanquake@gmail.com>2022-07-20 10:34:46 +0100
commitb63ddb7e6d5c0463b4b8888ae015df87a381c0f6 (patch)
tree58c8a3637c0bbeca8250229e2665694707f8fa8e /src
parent7c3df5e548ee3404d1ad5b47410dd7b6f77258d3 (diff)
downloadbitcoin-b63ddb7e6d5c0463b4b8888ae015df87a381c0f6.tar.xz
compat: remove unused WSA* definitions
Diffstat (limited to 'src')
-rw-r--r--src/compat/compat.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/compat/compat.h b/src/compat/compat.h
index 75f47bc700..5c9639be26 100644
--- a/src/compat/compat.h
+++ b/src/compat/compat.h
@@ -42,14 +42,12 @@ typedef unsigned int SOCKET;
#include <errno.h>
#define WSAGetLastError() errno
#define WSAEINVAL EINVAL
-#define WSAEALREADY EALREADY
#define WSAEWOULDBLOCK EWOULDBLOCK
#define WSAEAGAIN EAGAIN
#define WSAEMSGSIZE EMSGSIZE
#define WSAEINTR EINTR
#define WSAEINPROGRESS EINPROGRESS
#define WSAEADDRINUSE EADDRINUSE
-#define WSAENOTSOCK EBADF
#define INVALID_SOCKET (SOCKET)(~0)
#define SOCKET_ERROR -1
#else