diff options
author | snowdrop | 2005-07-22 13:26:41 +0000 |
---|---|---|
committer | snowdrop | 2005-07-22 13:26:41 +0000 |
commit | e4741b0cd27b2f073d8d1644c85d929b34f67199 (patch) | |
tree | a3b34e34a8ce42b94596353637b737bb6bd542ea /nanohttp | |
parent | e16678950607bf80eb879202d3eff0377c80892a (diff) | |
download | csoap-e4741b0cd27b2f073d8d1644c85d929b34f67199.tar.gz csoap-e4741b0cd27b2f073d8d1644c85d929b34f67199.tar.bz2 |
changed position of pthread.h
Diffstat (limited to 'nanohttp')
-rw-r--r-- | nanohttp/nanohttp-server.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/nanohttp/nanohttp-server.c b/nanohttp/nanohttp-server.c index 8a8d1e1..c099ed6 100644 --- a/nanohttp/nanohttp-server.c +++ b/nanohttp/nanohttp-server.c @@ -1,5 +1,5 @@ /****************************************************************** -* $Id: nanohttp-server.c,v 1.33 2005/07/15 19:59:30 snowdrop Exp $ +* $Id: nanohttp-server.c,v 1.34 2005/07/22 13:26:41 snowdrop Exp $ * * CSOAP Project: A http client/server library in C * Copyright (C) 2003 Ferhat Ayaz @@ -42,6 +42,8 @@ #include <sys/types.h> #include <unistd.h> +#include <pthread.h> + #ifdef HAVE_SOCKET #include <sys/socket.h> #endif @@ -56,7 +58,6 @@ #include <utils/alloc.h> #endif -#include <pthread.h> typedef struct _conndata { |