diff options
author | Paul Querna <pquerna@apache.org> | 2008-04-07 10:44:14 +0200 |
---|---|---|
committer | Paul Querna <pquerna@apache.org> | 2008-04-07 10:44:14 +0200 |
commit | 5e415009f36005803cc9f9054e84c1913c5f5476 (patch) | |
tree | ed421b7e2d3f08a105e03f6f1472c53c9f05b206 /include/http_core.h | |
parent | Make it compile on pre-C99 compilers (Move decls to beginning of func) (diff) | |
download | apache2-5e415009f36005803cc9f9054e84c1913c5f5476.tar.xz apache2-5e415009f36005803cc9f9054e84c1913c5f5476.zip |
Remove CORE_PRIVATE.
This define serves no modern purpose, since every module in the wild, including
our own define it, for no purpose.
If you have functions which you do not want in the 'public' API, put them
in a private header, that is not installed, just like mod_ssl does.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@645412 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/http_core.h')
-rw-r--r-- | include/http_core.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/http_core.h b/include/http_core.h index 0b537e253d..f05cb21112 100644 --- a/include/http_core.h +++ b/include/http_core.h @@ -307,8 +307,6 @@ AP_DECLARE(const char *) ap_auth_name(request_rec *r); */ AP_DECLARE(int) ap_satisfies(request_rec *r); -#ifdef CORE_PRIVATE - /** * Core is also unlike other modules in being implemented in more than * one file... so, data structures are declared here, even though most of @@ -599,7 +597,6 @@ int ap_core_input_filter(ap_filter_t *f, apr_bucket_brigade *b, apr_off_t readbytes); apr_status_t ap_core_output_filter(ap_filter_t *f, apr_bucket_brigade *b); -#endif /* CORE_PRIVATE */ AP_DECLARE(const char*) ap_get_server_protocol(server_rec* s); AP_DECLARE(void) ap_set_server_protocol(server_rec* s, const char* proto); |