]> git.saurik.com Git - bison.git/commitdiff
(bitsetv_alloc, bitsetv_create):
authorPaul Eggert <eggert@cs.ucla.edu>
Wed, 2 Oct 2002 07:55:44 +0000 (07:55 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Wed, 2 Oct 2002 07:55:44 +0000 (07:55 +0000)
Use bitset_bindex, not int or unsigned int or size_t, to count bits.

lib/bitsetv.h

index 84a2c667fff49b29bb82e9dfa57683988539673a..f11bd9d5f026be7c022a05459725a24231955f30 100644 (file)
@@ -25,12 +25,12 @@ typedef bitset * bitsetv;
 
 /* Create a vector of N_VECS bitsets, each of N_BITS, and of
    type TYPE.  */
-extern bitsetv bitsetv_alloc PARAMS ((unsigned int, unsigned int,
+extern bitsetv bitsetv_alloc PARAMS ((bitset_bindex, bitset_bindex,
                                      enum bitset_type));
 
 /* Create a vector of N_VECS bitsets, each of N_BITS, and with
    attribute hints specified by ATTR.  */
-extern bitsetv bitsetv_create PARAMS ((unsigned int, unsigned int,
+extern bitsetv bitsetv_create PARAMS ((bitset_bindex, bitset_bindex,
                                       unsigned int));
 
 /* Free vector of bitsets.  */