summaryrefslogtreecommitdiff
path: root/lib/bbitset.h
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2003-03-12 23:01:22 +0000
committerPaul Eggert <eggert@cs.ucla.edu>2003-03-12 23:01:22 +0000
commit4f8a9f6dba261671d09b59411a7c4b41289ded74 (patch)
tree5f93bab0e1ede0e6eadfbc59be33bce3ecd72837 /lib/bbitset.h
parente13bcfbbbd5905e3b17977549dc01eb8c48f892d (diff)
downloadbison-4f8a9f6dba261671d09b59411a7c4b41289ded74.tar.gz
Include <limits.h> unconditionally. We have been
assuming at least C89 in the bitset code for some time now.
Diffstat (limited to 'lib/bbitset.h')
-rw-r--r--lib/bbitset.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/bbitset.h b/lib/bbitset.h
index 770cd68b..e1b69e07 100644
--- a/lib/bbitset.h
+++ b/lib/bbitset.h
@@ -1,5 +1,5 @@
/* Base bitset stuff.
- Copyright (C) 2002 Free Software Foundation, Inc.
+ Copyright (C) 2002, 2003 Free Software Foundation, Inc.
Contributed by Michael Hayes (m.hayes@elec.canterbury.ac.nz).
This program is free software; you can redistribute it and/or modify
@@ -21,9 +21,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
#include "libiberty.h"
-#ifdef HAVE_LIMITS_H
#include <limits.h>
-#endif
/* Currently we support three flavours of bitsets:
BITSET_ARRAY: Array of bits (fixed size, fast for dense bitsets).