Make str_dup static.
robs [Fri, 22 Jun 2001 13:13:41 +0000 (13:13 +0000)]
libfcgi/os_unix.c

index 7912c9b..ccc3836 100755 (executable)
@@ -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.27 2001/06/22 13:13:41 robs Exp $";
 #endif /* not lint */
 
 #include "fcgi_config.h"
@@ -842,7 +842,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);