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;