From a54ded28797eb56204214a0ba95d4e580aa8103f Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Sat, 17 Apr 2004 06:35:03 +0000 Subject: [PATCH] util.c uses LONG_MAX, needs another include on fbsd 5.x svn:r1653 --- src/common/util.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/common/util.c b/src/common/util.c index c5dd6aa97d..81c7c5ad69 100644 --- a/src/common/util.c +++ b/src/common/util.c @@ -27,6 +27,9 @@ #ifdef HAVE_ERRNO_H #include #endif +#ifdef HAVE_SYS_LIMITS_H +#include +#endif #ifdef HAVE_SYS_TYPES_H #include /* Must be included before sys/stat.h for Ultrix */ #endif