blob: ef9d68c6ff52f82ef0ee8ebd3584cab0526d5266 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
$NetBSD: patch-src_connectiontcpserver.cpp,v 1.3 2016/08/30 15:20:47 schnoebe Exp $
Make sure string.h is included for memset and friends.
Assume it's needed for all non-_WIN32_CE operating systems.
(hmm, this should probably be determined by configure, and handled in config.h)
--- src/connectiontcpserver.cpp.orig 2016-08-23 13:55:51.000000000 +0000
+++ src/connectiontcpserver.cpp
@@ -55,6 +55,7 @@
#ifndef _WIN32_WCE
# include <sys/types.h>
+# include <string.h>
#endif
// remove for 1.1
|