]> granicus.if.org Git - apache/commitdiff
Make function definition agree with the declaration, which fixes a compile break on
authorBill Stoddard <stoddard@apache.org>
Fri, 17 Nov 2000 13:57:32 +0000 (13:57 +0000)
committerBill Stoddard <stoddard@apache.org>
Fri, 17 Nov 2000 13:57:32 +0000 (13:57 +0000)
Windows.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86991 13f79535-47bb-0310-9956-ffa450edef68

modules/http/http_protocol.c

index e7f1d357282133755627c42cfe1ec902986b96dc..c09dc1e8e5753490417e602b0e3e9000edeb6582 100644 (file)
@@ -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;