mirror of https://github.com/YosysHQ/abc.git
Fixing compilation problem which resulting from defining 'int c' as 'char c'.
This commit is contained in:
parent
7d9b3556bd
commit
d8647f0b7b
|
|
@ -59,11 +59,11 @@ static int TypeCheck( Abc_Frame_t * pAbc, const char * s);
|
|||
int Abc_RealMain( int argc, char * argv[] )
|
||||
{
|
||||
Abc_Frame_t * pAbc;
|
||||
char sCommandUsr[500], sCommandTmp[100], sReadCmd[20], sWriteCmd[20], c;
|
||||
char sCommandUsr[500], sCommandTmp[100], sReadCmd[20], sWriteCmd[20];
|
||||
const char * sOutFile, * sInFile;
|
||||
char * sCommand;
|
||||
int fStatus = 0;
|
||||
int fBatch, fInitSource, fInitRead, fFinalWrite;
|
||||
int c, fBatch, fInitSource, fInitRead, fFinalWrite;
|
||||
|
||||
// added to detect memory leaks:
|
||||
#if defined(_DEBUG) && defined(_MSC_VER)
|
||||
|
|
|
|||
Loading…
Reference in New Issue