Version abc61206

This commit is contained in:
Alan Mishchenko
2006-12-06 08:01:00 -08:00
parent 38254947a5
commit 4cf99cae95
26 changed files with 3309 additions and 1324 deletions
+3
View File
@@ -598,6 +598,9 @@ static inline int Vec_IntPushUnique( Vec_Int_t * p, int Entry )
***********************************************************************/
static inline unsigned * Vec_IntFetch( Vec_Int_t * p, int nWords )
{
if ( nWords == 0 )
return NULL;
assert( nWords > 0 );
p->nSize += nWords;
if ( p->nSize > p->nCap )
{