From: Ben Pfaff <blp@gnu.org>
Date: Sun, 1 Apr 2007 16:32:19 +0000 (+0000)
Subject: Need #include <limits.h>.  Thanks to "John McCabe-Dansted"
X-Git-Tag: sav-api~1516
X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0a20082e28caaaf1122510d992e1c6dce755ad0e;p=pspp

Need #include <limits.h>.  Thanks to "John McCabe-Dansted"
<gmatht@gmail.com> for pointing this out.
---

diff --git a/src/libpspp/ChangeLog b/src/libpspp/ChangeLog
index 4f036320e8..b4575a528d 100644
--- a/src/libpspp/ChangeLog
+++ b/src/libpspp/ChangeLog
@@ -1,3 +1,8 @@
+2007-04-01  Ben Pfaff  <blp@gnu.org>
+
+	* bt.c: Need #include <limits.h>.  Thanks to "John McCabe-Dansted"
+	<gmatht@gmail.com> for pointing this out.
+
 2007-03-31  Ben Pfaff  <blp@gnu.org>
 
 	Patch #5827.
diff --git a/src/libpspp/bt.c b/src/libpspp/bt.c
index 62a7cdd67b..43bd3b63ff 100644
--- a/src/libpspp/bt.c
+++ b/src/libpspp/bt.c
@@ -65,6 +65,7 @@
 
 #include <libpspp/bt.h>
 
+#include <limits.h>
 #include <stdbool.h>
 #include <stdint.h>