mirror of https://github.com/YosysHQ/abc.git
Fix prototype mismatch for `Gia_ManSimRsb`
This commit is contained in:
parent
8a174ee865
commit
e6a3dc602c
|
|
@ -35012,7 +35012,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 )
|
||||
|
|
|
|||
Loading…
Reference in New Issue