diff options
author | William A. Rowe Jr <wrowe@apache.org> | 2000-10-16 08:05:15 +0200 |
---|---|---|
committer | William A. Rowe Jr <wrowe@apache.org> | 2000-10-16 08:05:15 +0200 |
commit | d6490633ebbf0573107211f2cbd7517dad37a07e (patch) | |
tree | a32c2d84488b7197c9853faafe248ed6f4903ca5 /test/test_parser.c | |
parent | Cleaning up a _Security_ concern - Please Review Carefully (diff) | |
download | apache2-d6490633ebbf0573107211f2cbd7517dad37a07e.tar.xz apache2-d6490633ebbf0573107211f2cbd7517dad37a07e.zip |
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/httpd/httpd/trunk@86609 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/test_parser.c')
-rw-r--r-- | test/test_parser.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/test_parser.c b/test/test_parser.c index 440700ad09..618e3fbe0a 100644 --- a/test/test_parser.c +++ b/test/test_parser.c @@ -23,17 +23,17 @@ gid_t ap_group_id; void *ap_dummy_mutex = &ap_dummy_mutex; char *ap_server_argv0; -API_EXPORT(void) ap_block_alarms(void) +AP_DECLARE(void) ap_block_alarms(void) { ; } -API_EXPORT(void) ap_unblock_alarms(void) +AP_DECLARE(void) ap_unblock_alarms(void) { ; } -API_EXPORT(void) ap_log_error(const char *file, int line, int level, +AP_DECLARE(void) ap_log_error(const char *file, int line, int level, const request_rec *r, const char *fmt, ...) { ; |