Author: joeswatosh
Date: Thu Mar 28 01:57:09 2013
New Revision: 1461920
URL: http://svn.apache.org/r1461920
Log:
For those of us with somewhat deficient compilers that don't provide ULONG_MAX
unless <limits.h> is explicitly included.
* subversion/include/svn_types.h
(includes): Add include of limits.h
Approved by: stsp
Modified:
subversion/trunk/subversion/include/svn_types.h
Modified: subversion/trunk/subversion/include/svn_types.h
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/include/svn_types.h?rev=1461920&r1=1461919&r2=1461920&view=diff
==============================================================================
--- subversion/trunk/subversion/include/svn_types.h (original)
+++ subversion/trunk/subversion/include/svn_types.h Thu Mar 28 01:57:09 2013
@@ -29,6 +29,7 @@
/* ### this should go away, but it causes too much breakage right now */
#include <stdlib.h>
+#include <limits.h> /* for ULONG_MAX */
#include <apr.h> /* for apr_size_t, apr_int64_t, ... */
#include <apr_errno.h> /* for apr_status_t */