From eb6172cd1ef9c71547e75a9501e2a435d479cd2e Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Wed, 2 Oct 2002 07:55:44 +0000 Subject: [PATCH] (bitsetv_alloc, bitsetv_create): Use bitset_bindex, not int or unsigned int or size_t, to count bits. --- lib/bitsetv.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/bitsetv.h b/lib/bitsetv.h index 84a2c667..f11bd9d5 100644 --- a/lib/bitsetv.h +++ b/lib/bitsetv.h @@ -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. */ -- 2.50.0