diff options
author | William A. Rowe Jr <wrowe@apache.org> | 2002-06-28 21:05:14 +0000 |
---|---|---|
committer | William A. Rowe Jr <wrowe@apache.org> | 2002-06-28 21:05:14 +0000 |
commit | ac292e2d70478ed68d71e42309ffc576a89e0764 (patch) | |
tree | 7e40af4ac4a0c123c98992e398b87f110940d7bc /include/apr_strings.h | |
parent | 3c7629ad1c21b8702cfad72c80cf042cf4b93be1 (diff) | |
download | apr-ac292e2d70478ed68d71e42309ffc576a89e0764.tar.gz |
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.
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@63528 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_strings.h')
-rw-r--r-- | include/apr_strings.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/apr_strings.h b/include/apr_strings.h index 8cb1e98a2..c33b83547 100644 --- a/include/apr_strings.h +++ b/include/apr_strings.h @@ -179,8 +179,8 @@ APR_DECLARE_NONSTD(char *) apr_pstrcat(apr_pool_t *p, ...); * @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 |