1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

Namespace protect the rest of the macros defined by ap_config.h

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86661 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Ryan Bloom
2000-10-19 00:05:00 +00:00
parent 7493daab32
commit 140586d14f
10 changed files with 27 additions and 30 deletions

View File

@@ -2667,7 +2667,7 @@ AP_DECLARE(apr_status_t) ap_send_fd(apr_file_t *fd, request_rec *r, apr_off_t of
}
#endif
#ifdef USE_MMAP_FILES
#ifdef AP_USE_MMAP_FILES
/* The code writes MMAP_SEGMENT_SIZE bytes at a time. This is due to Apache's
* timeout model, which is a timeout per-write rather than a time for the
@@ -2700,7 +2700,7 @@ AP_DECLARE(size_t) ap_send_mmap(apr_mmap_t *mm, request_rec *r, size_t offset,
return mm->size; /* XXX - change API to report apr_status_t? */
}
#endif /* USE_MMAP_FILES */
#endif /* AP_USE_MMAP_FILES */
AP_DECLARE(int) ap_rputc(int c, request_rec *r)
{