summaryrefslogtreecommitdiffstats
path: root/nanohttp
diff options
context:
space:
mode:
authorGravatar mrcsys2006-02-09 13:43:49 +0000
committerGravatar mrcsys2006-02-09 13:43:49 +0000
commit3d113d2c9c356aed327d6fb1a2114ffda0360492 (patch)
treeb52a9f873fa657a74a7ad0a7e780a64e299ce82c /nanohttp
parentc064ba2e421fbeaebc38d92493e9eaf33a5feac7 (diff)
downloadcsoap-3d113d2c9c356aed327d6fb1a2114ffda0360492.tar.gz
csoap-3d113d2c9c356aed327d6fb1a2114ffda0360492.tar.bz2
pthread header not needed in win32 and may cause errors.
Diffstat (limited to 'nanohttp')
-rw-r--r--nanohttp/nanohttp-common.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/nanohttp/nanohttp-common.c b/nanohttp/nanohttp-common.c
index adead8c..d7b1f27 100644
--- a/nanohttp/nanohttp-common.c
+++ b/nanohttp/nanohttp-common.c
@@ -1,5 +1,5 @@
/******************************************************************
-* $Id: nanohttp-common.c,v 1.25 2006/02/08 11:13:14 snowdrop Exp $
+* $Id: nanohttp-common.c,v 1.26 2006/02/09 13:43:49 mrcsys Exp $
*
* CSOAP Project: A http client/server library in C
* Copyright (C) 2003 Ferhat Ayaz
@@ -31,7 +31,9 @@
#include <string.h>
#include <ctype.h>
+#ifndef WIN32
#include <pthread.h>
+#endif
#ifdef MEM_DEBUG
#include <utils/alloc.h>