Return-Path: Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 62142 invoked by uid 500); 28 Jun 2002 21:05:15 -0000 Mailing-List: contact cvs-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: dev@apr.apache.org Delivered-To: mailing list cvs@apr.apache.org Received: (qmail 62120 invoked from network); 28 Jun 2002 21:05:14 -0000 Date: 28 Jun 2002 21:05:14 -0000 Message-ID: <20020628210514.39269.qmail@icarus.apache.org> From: wrowe@apache.org To: apr-cvs@apache.org Subject: cvs commit: apr/strings apr_strings.c X-Spam-Rating: 209.66.108.5 1.6.2 0/1000/N wrowe 2002/06/28 14:05:14 Modified: include apr_strings.h strings apr_strings.c Log: Well it appears that binary compatibility is already broken. This axes it for Win32, but it's a transition that was necessary [at some point in the future.] The change is a noop on all other platforms. Revision Changes Path 1.26 +2 -2 apr/include/apr_strings.h Index: apr_strings.h =================================================================== RCS file: /home/cvs/apr/include/apr_strings.h,v retrieving revision 1.25 retrieving revision 1.26 diff -u -r1.25 -r1.26 --- apr_strings.h 12 May 2002 00:56:26 -0000 1.25 +++ apr_strings.h 28 Jun 2002 21:05:14 -0000 1.26 @@ -179,8 +179,8 @@ * @param nbytes (output) strlen of new string (pass in NULL to omit) * @return The new string */ -APR_DECLARE_NONSTD(char *) apr_pstrcatv(apr_pool_t *p, const struct iovec *vec, - apr_size_t nvec, apr_size_t *nbytes); +APR_DECLARE(char *) apr_pstrcatv(apr_pool_t *p, const struct iovec *vec, + apr_size_t nvec, apr_size_t *nbytes); /** * printf-style style printing routine. The data is output to a string 1.28 +2 -2 apr/strings/apr_strings.c Index: apr_strings.c =================================================================== RCS file: /home/cvs/apr/strings/apr_strings.c,v retrieving revision 1.27 retrieving revision 1.28 diff -u -r1.27 -r1.28 --- apr_strings.c 13 May 2002 16:09:22 -0000 1.27 +++ apr_strings.c 28 Jun 2002 21:05:14 -0000 1.28 @@ -177,8 +177,8 @@ return res; } -APR_DECLARE_NONSTD(char *) apr_pstrcatv(apr_pool_t *a, const struct iovec *vec, - apr_size_t nvec, apr_size_t *nbytes) +APR_DECLARE(char *) apr_pstrcatv(apr_pool_t *a, const struct iovec *vec, + apr_size_t nvec, apr_size_t *nbytes) { apr_size_t i; apr_size_t len;