summaryrefslogtreecommitdiff
path: root/include/apr_fnmatch.h
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2000-10-16 06:04:50 +0000
committerWilliam A. Rowe Jr <wrowe@apache.org>2000-10-16 06:04:50 +0000
commit81912b37409be0387e10346b84749ffdabcd4046 (patch)
tree24b8fe20a3b2235b303d428731c5d38a5b266ea7 /include/apr_fnmatch.h
parenta92d4bd076b126c4d64ebeee40692b4b2d56a128 (diff)
downloadapr-81912b37409be0387e10346b84749ffdabcd4046.tar.gz
Renamed all MODULE_EXPORT symbols to AP_MODULE_DECLARE and all symbols
for CORE_EXPORT to AP_CORE_DECLARE (namespace protecting the wrapper) and retitled API_EXPORT as AP_DECLARE and APR_EXPORT as APR_DECLARE. All _VAR_ flavors changes to _DATA to be absolutely clear. Thank you Greg, for the most obvious suggestion. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@60587 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_fnmatch.h')
-rw-r--r--include/apr_fnmatch.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/apr_fnmatch.h b/include/apr_fnmatch.h
index e15663337..0eb361463 100644
--- a/include/apr_fnmatch.h
+++ b/include/apr_fnmatch.h
@@ -69,7 +69,7 @@ extern "C" {
* @deffunc apr_status_t apr_fnmatch(const char *pattern, const char *strings, int flags)
*/
-APR_EXPORT(apr_status_t) apr_fnmatch(const char *pattern, const char *strings,
+APR_DECLARE(apr_status_t) apr_fnmatch(const char *pattern, const char *strings,
int flags);
/**
@@ -78,7 +78,7 @@ APR_EXPORT(apr_status_t) apr_fnmatch(const char *pattern, const char *strings,
* @return non-zero if pattern has any glob characters in it
* @deffunc int apr_is_fnmatch(const char *pattern)
*/
-APR_EXPORT(int) apr_is_fnmatch(const char *pattern);
+APR_DECLARE(int) apr_is_fnmatch(const char *pattern);
#ifdef __cplusplus
}