aboutsummaryrefslogtreecommitdiff
path: root/lib/nwlib.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/nwlib.c')
-rw-r--r--lib/nwlib.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/nwlib.c b/lib/nwlib.c
index b0eea56c7..8b873e7f9 100644
--- a/lib/nwlib.c
+++ b/lib/nwlib.c
@@ -5,7 +5,7 @@
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
- * Copyright (C) 1998 - 2004, Daniel Stenberg, <daniel@haxx.se>, et al.
+ * Copyright (C) 1998 - 2007, Daniel Stenberg, <daniel@haxx.se>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
@@ -21,6 +21,8 @@
* $Id$
***************************************************************************/
+#if !defined(WIN32) && !defined(_WIN32) && !defined(__WIN32__) && !defined(_WIN32_WCE)
+
#include <errno.h>
#include <string.h>
#include <stdlib.h>
@@ -298,3 +300,5 @@ void DisposeThreadData(void *data)
free(data);
}
}
+
+#endif /* Not for Windows */