diff options
author | wrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68> | 2000-05-27 22:40:19 +0000 |
---|---|---|
committer | wrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68> | 2000-05-27 22:40:19 +0000 |
commit | 65c9f2f9bed8684a46cd8086cee2ce90ee654b27 (patch) | |
tree | c5b5ccf2efd9096cb21ce41c319ee1be27f5d106 /hooks/apr_hooks.c | |
parent | ec3df12ce2286578645386f025ae1e7c7836c91e (diff) | |
download | libapr-util-65c9f2f9bed8684a46cd8086cee2ce90ee654b27.tar.gz |
PR:
Obtained from:
Submitted by:
Reviewed by:
Reverse out all _EXPORT_VAR changes back to their original _VAR_EXPORT
names for linkage (API_, CORE_, and MODULE_).
git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@57808 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'hooks/apr_hooks.c')
-rw-r--r-- | hooks/apr_hooks.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hooks/apr_hooks.c b/hooks/apr_hooks.c index fc132dfc..cd07e826 100644 --- a/hooks/apr_hooks.c +++ b/hooks/apr_hooks.c @@ -6,9 +6,9 @@ #define ap_palloc(pool,size) malloc(size) #endif -API_EXPORT_VAR ap_pool_t *ap_global_hook_pool = NULL; -API_EXPORT_VAR int ap_debug_module_hooks = FALSE; -API_EXPORT_VAR const char *ap_debug_module_name = NULL; +API_VAR_EXPORT ap_pool_t *ap_global_hook_pool = NULL; +API_VAR_EXPORT int ap_debug_module_hooks = FALSE; +API_VAR_EXPORT const char *ap_debug_module_name = NULL; /* NB: This must echo the LINK_##name structure */ typedef struct |