From 71bdfae94122fff6f245c47721d284f78c286164 Mon Sep 17 00:00:00 2001 From: Alan Mishchenko Date: Sat, 29 Sep 2012 17:11:03 -0400 Subject: Replacing 'st_table' by 'st__table' to resolve linker problems. --- src/map/super/superAnd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/map/super/superAnd.c') diff --git a/src/map/super/superAnd.c b/src/map/super/superAnd.c index 9f3996b9..774c4fc5 100644 --- a/src/map/super/superAnd.c +++ b/src/map/super/superAnd.c @@ -169,7 +169,7 @@ Super2_Man_t * Super2_ManStart() pMan = ABC_ALLOC( Super2_Man_t, 1 ); memset( pMan, 0, sizeof(Super2_Man_t) ); pMan->pMem = Extra_MmFixedStart( sizeof(Super2_Gate_t) ); - pMan->tTable = stmm_init_table( st_ptrcmp, st_ptrhash ); + pMan->tTable = stmm_init_table( st__ptrcmp, st__ptrhash ); return pMan; } @@ -344,7 +344,7 @@ Super2_Lib_t * Super2_LibCompute( Super2_Man_t * pMan, Super2_Lib_t * pLib ) // reset the hash table stmm_free_table( pMan->tTable ); - pMan->tTable = stmm_init_table( st_ptrcmp, st_ptrhash ); + pMan->tTable = stmm_init_table( st__ptrcmp, st__ptrhash ); // set the starting things into the hash table Super2_LibForEachGate( pLibNew, pGate1 ) { -- cgit v1.2.3