summaryrefslogtreecommitdiff
path: root/slirp/slirp.h
diff options
context:
space:
mode:
authorbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2004-10-07 23:27:35 +0000
committerbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2004-10-07 23:27:35 +0000
commit02d2c54cd3e1a65ce4eaf1555b7f73d0a50eaec4 (patch)
tree52c827b911f8ce0cc99998198dc0fef5abee3c97 /slirp/slirp.h
parent890fa6bebbb540b9761aafc3fe37b87e26578346 (diff)
downloadqemu-02d2c54cd3e1a65ce4eaf1555b7f73d0a50eaec4.tar.gz
windows fixes (Gregory Alexander)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1102 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'slirp/slirp.h')
-rw-r--r--slirp/slirp.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/slirp/slirp.h b/slirp/slirp.h
index b52044a65a..964d5e19b7 100644
--- a/slirp/slirp.h
+++ b/slirp/slirp.h
@@ -329,4 +329,8 @@ struct tcpcb *tcp_drop(struct tcpcb *tp, int err);
#define max(x,y) ((x) > (y) ? (x) : (y))
#endif
+#ifdef _WIN32
+#define errno (WSAGetLastError())
+#endif
+
#endif