diff options
author | mrcsys | 2006-02-09 13:43:49 +0000 |
---|---|---|
committer | mrcsys | 2006-02-09 13:43:49 +0000 |
commit | 3d113d2c9c356aed327d6fb1a2114ffda0360492 (patch) | |
tree | b52a9f873fa657a74a7ad0a7e780a64e299ce82c | |
parent | c064ba2e421fbeaebc38d92493e9eaf33a5feac7 (diff) | |
download | csoap-3d113d2c9c356aed327d6fb1a2114ffda0360492.tar.gz csoap-3d113d2c9c356aed327d6fb1a2114ffda0360492.tar.bz2 |
pthread header not needed in win32 and may cause errors.
-rw-r--r-- | nanohttp/nanohttp-common.c | 4 |
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> |