diff options
author | Greg Stein <gstein@apache.org> | 2000-06-29 02:53:38 +0200 |
---|---|---|
committer | Greg Stein <gstein@apache.org> | 2000-06-29 02:53:38 +0200 |
commit | 038c7cc0510b1130089d8b3e9da5eb98588ee490 (patch) | |
tree | 03173d48fed5526d9a0eff38c39af72a5b751cb3 | |
parent | First cut at getting mod_mmap_static function into mod_file_cache. My intent ... (diff) | |
download | apache2-038c7cc0510b1130089d8b3e9da5eb98588ee490.tar.xz apache2-038c7cc0510b1130089d8b3e9da5eb98588ee490.zip |
always include limits.h for the INT_MAX value.
Submitted by: Jeff Trawick
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85729 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | modules/dav/main/mod_dav.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/dav/main/mod_dav.h b/modules/dav/main/mod_dav.h index d4dab1ca3a..bbcb93b92d 100644 --- a/modules/dav/main/mod_dav.h +++ b/modules/dav/main/mod_dav.h @@ -64,6 +64,7 @@ extern "C" { #endif #include "httpd.h" +#include <limits.h> /* for INT_MAX */ #define DAV_VERSION "1.0.1" @@ -74,7 +75,6 @@ extern "C" { #define DAV_READ_BLOCKSIZE 2048 /* used for reading input blocks */ #ifdef WIN32 -#include <limits.h> typedef int ssize_t; #endif /* WIN32 */ |