Fix prototype mismatch for `Gia_ManSimRsb`

This commit is contained in:
Martin Povišer 2024-04-22 17:34:38 +02:00
parent 208b48667f
commit b502f00222
1 changed files with 1 additions and 1 deletions

View File

@ -35055,7 +35055,7 @@ usage:
***********************************************************************/
int Abc_CommandAbc9SimRsb( Abc_Frame_t * pAbc, int argc, char ** argv )
{
extern void Gia_ManSimRsb( Gia_Man_t * p, int nCands, int fVerbose );
extern int Gia_ManSimRsb( Gia_Man_t * p, int nCands, int fVerbose );
int c, nCands = 32, fVerbose = 0;
Extra_UtilGetoptReset();
while ( ( c = Extra_UtilGetopt( argc, argv, "Nvh" ) ) != EOF )