]> granicus.if.org Git - apache/commitdiff
Fix another windows compile break.
authorBill Stoddard <stoddard@apache.org>
Fri, 9 Feb 2001 18:15:01 +0000 (18:15 +0000)
committerBill Stoddard <stoddard@apache.org>
Fri, 9 Feb 2001 18:15:01 +0000 (18:15 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88038 13f79535-47bb-0310-9956-ffa450edef68

include/util_filter.h
server/util_filter.c

index 6ddee205238405a2bf0e6c7bcedb4b3834c3a607..8667338704c612992ba0d19b07fe5014711d6ff5 100644 (file)
@@ -400,7 +400,7 @@ AP_DECLARE(apr_status_t) ap_save_brigade(ap_filter_t *f, apr_bucket_brigade **sa
  * @param ctx The filter to pass the brigade to
  * @deffunc apr_status_t ap_filter_flush(apr_bucket_brigade *bb, void *ctx)
  */
-AP_DECLARE(apr_status_t) ap_filter_flush(apr_bucket_brigade *bb, void *ctx);
+AP_DECLARE_NONSTD(apr_status_t) ap_filter_flush(apr_bucket_brigade *bb, void *ctx);
 
 /**
  * Flush the current brigade down the filter stack
index 209f0cff8bf2da3a1a14b19f78605eb067f45d14..ce71cdebe328bd92fe1cfbed562697da7b586bda 100644 (file)
@@ -266,7 +266,7 @@ AP_DECLARE(apr_status_t) ap_save_brigade(ap_filter_t *f, apr_bucket_brigade **sa
     return APR_SUCCESS;
 }
 
-AP_DECLARE(apr_status_t) ap_filter_flush(apr_bucket_brigade *bb, void *ctx)
+AP_DECLARE_NONSTD(apr_status_t) ap_filter_flush(apr_bucket_brigade *bb, void *ctx)
 {
     ap_filter_t *f = ctx;