X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=libfcgi%2Fos_unix.c;h=5465cad2032fee1f487e5214767df8afd1934c3a;hb=2b5dbb816c3bf8b1b45bc54d923f27076f6df212;hp=7912c9b62f76d283391eeeb7bd3341a547d0d21c;hpb=26bdca4052eea01a7964f53ac7ea026a18374270;p=catagits%2Ffcgi2.git diff --git a/libfcgi/os_unix.c b/libfcgi/os_unix.c index 7912c9b..5465cad 100755 --- a/libfcgi/os_unix.c +++ b/libfcgi/os_unix.c @@ -17,7 +17,7 @@ */ #ifndef lint -static const char rcsid[] = "$Id: os_unix.c,v 1.26 2001/06/18 14:24:28 robs Exp $"; +static const char rcsid[] = "$Id: os_unix.c,v 1.28 2001/06/22 14:26:39 robs Exp $"; #endif /* not lint */ #include "fcgi_config.h" @@ -55,8 +55,6 @@ static const char rcsid[] = "$Id: os_unix.c,v 1.26 2001/06/18 14:24:28 robs Exp #endif #include "fastcgi.h" -#include "fcgiapp.h" -#include "fcgiappmisc.h" #include "fcgimisc.h" #include "fcgios.h" @@ -842,7 +840,7 @@ int OS_DoIo(struct timeval *tmo) * Not all systems have strdup(). * @@@ autoconf should determine whether or not this is needed, but for now.. */ -char * str_dup(const char * str) +static char * str_dup(const char * str) { char * sdup = (char *) malloc(strlen(str) + 1);