From: Bill Stoddard Date: Fri, 17 Nov 2000 13:57:32 +0000 (+0000) Subject: Make function definition agree with the declaration, which fixes a compile break on X-Git-Tag: APACHE_2_0_ALPHA_8~43 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=92abe95d63c662052f22ef4bf2fb4b6f145f3ad8;p=apache Make function definition agree with the declaration, which fixes a compile break on Windows. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86991 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http/http_protocol.c b/modules/http/http_protocol.c index e7f1d35728..c09dc1e8e5 100644 --- a/modules/http/http_protocol.c +++ b/modules/http/http_protocol.c @@ -1027,7 +1027,7 @@ apr_status_t ap_http_filter(ap_filter_t *f, ap_bucket_brigade *b, ap_input_mode_ * If no LF is detected on the last line due to a dropped connection * or a full buffer, that's considered an error. */ -int ap_getline(char *s, int n, request_rec *r, int fold) +AP_CORE_DECLARE(int) ap_getline(char *s, int n, request_rec *r, int fold) { char *pos = s; char *last_char;