]> granicus.if.org Git - apache/commitdiff
Standardize order of "extern" and XXX_DECLARE_YYY.
authorRainer Jung <rjung@apache.org>
Sat, 6 Feb 2016 00:30:37 +0000 (00:30 +0000)
committerRainer Jung <rjung@apache.org>
Sat, 6 Feb 2016 00:30:37 +0000 (00:30 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1728779 13f79535-47bb-0310-9956-ffa450edef68

modules/proxy/mod_proxy.h
modules/proxy/proxy_util.h

index 3860eaa586a700c286527f62a7801d55a60afab4..84be23749f0de06fa47b7ca1dc01a96d17be7869 100644 (file)
@@ -568,8 +568,8 @@ struct proxy_balancer_method {
 
 
 /* These 2 are in mod_proxy.c */
-PROXY_DECLARE_DATA extern proxy_hcmethods_t proxy_hcmethods[];
-PROXY_DECLARE_DATA extern proxy_wstat_t proxy_wstat_tbl[];
+extern PROXY_DECLARE_DATA proxy_hcmethods_t proxy_hcmethods[];
+extern PROXY_DECLARE_DATA proxy_wstat_t proxy_wstat_tbl[];
 
 /* Following 4 from health check */
 APR_DECLARE_OPTIONAL_FN(void, hc_show_exprs, (request_rec *));
index 202be8d65351751103651569974975078671b305..bc131da0f0f09a49d3ee9938e7a999211ba23069 100644 (file)
@@ -31,9 +31,9 @@ PROXY_DECLARE(int) ap_proxy_is_domainname(struct dirconn_entry *This, apr_pool_t
 PROXY_DECLARE(int) ap_proxy_is_hostname(struct dirconn_entry *This, apr_pool_t *p);
 PROXY_DECLARE(int) ap_proxy_is_word(struct dirconn_entry *This, apr_pool_t *p);
 
-PROXY_DECLARE_DATA extern int proxy_lb_workers;
-PROXY_DECLARE_DATA extern const apr_strmatch_pattern *ap_proxy_strmatch_path;
-PROXY_DECLARE_DATA extern const apr_strmatch_pattern *ap_proxy_strmatch_domain;
+extern PROXY_DECLARE_DATA int proxy_lb_workers;
+extern PROXY_DECLARE_DATA const apr_strmatch_pattern *ap_proxy_strmatch_path;
+extern PROXY_DECLARE_DATA const apr_strmatch_pattern *ap_proxy_strmatch_domain;
 
 /**
  * Register optional functions declared within proxy_util.c.