Return-Path: Delivered-To: apmail-apache-cvs-archive@apache.org Received: (qmail 24217 invoked by uid 500); 3 Apr 2001 16:49:33 -0000 Mailing-List: contact apache-cvs-help@apache.org; run by ezmlm Precedence: bulk Reply-To: new-httpd@apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list apache-cvs@apache.org Received: (qmail 24198 invoked by uid 500); 3 Apr 2001 16:49:29 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Date: 3 Apr 2001 16:49:28 -0000 Message-ID: <20010403164928.24193.qmail@apache.org> From: trawick@apache.org To: httpd-2.0-cvs@apache.org Subject: cvs commit: httpd-2.0/support ab.c trawick 01/04/03 09:49:28 Modified: support ab.c Log: Uhh, we really need the prototypes for standard string functions. Revision Changes Path 1.69 +4 -2 httpd-2.0/support/ab.c Index: ab.c =================================================================== RCS file: /home/cvs/httpd-2.0/support/ab.c,v retrieving revision 1.68 retrieving revision 1.69 diff -u -r1.68 -r1.69 --- ab.c 2001/04/03 01:56:18 1.68 +++ ab.c 2001/04/03 16:49:25 1.69 @@ -140,6 +140,8 @@ #include #include "apr_lib.h" +#define APR_WANT_STRFUNC +#include "apr_want.h" #if APR_HAVE_STDIO_H #include /* for EOF */ #endif @@ -1275,14 +1277,14 @@ static void copyright(void) { if (!use_html) { - printf("This is ApacheBench, Version %s\n", AB_VERSION " <$Revision: 1.68 $> apache-2.0"); + printf("This is ApacheBench, Version %s\n", AB_VERSION " <$Revision: 1.69 $> apache-2.0"); printf("Copyright (c) 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/\n"); printf("Copyright (c) 1998-2001 The Apache Software Foundation, http://www.apache.org/\n"); printf("\n"); } else { printf("

\n"); - printf(" This is ApacheBench, Version %s <%s> apache-2.0
\n", AB_VERSION, "$Revision: 1.68 $"); + printf(" This is ApacheBench, Version %s <%s> apache-2.0
\n", AB_VERSION, "$Revision: 1.69 $"); printf(" Copyright (c) 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
\n"); printf(" Copyright (c) 1998-2001 The Apache Software Foundation, http://www.apache.org/
\n"); printf("

\n

\n");