mirror of https://github.com/YosysHQ/abc.git
Compiler warnings.
This commit is contained in:
parent
13dc7bacf1
commit
73d68a08c1
|
|
@ -82,9 +82,12 @@ char * Abc_UtilsGetUsersInput( Abc_Frame_t * pAbc )
|
|||
return line;
|
||||
}
|
||||
#else
|
||||
{
|
||||
char * pRetValue;
|
||||
fprintf( pAbc->Out, "%s", Prompt );
|
||||
fgets( Prompt, 5000, stdin );
|
||||
pRetValue = fgets( Prompt, 5000, stdin );
|
||||
return Prompt;
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -200,7 +200,6 @@ void Map_SuperLibFree( Map_SuperLib_t * p )
|
|||
int Map_SuperLibDeriveFromGenlib( Mio_Library_t * pLib, int fVerbose )
|
||||
{
|
||||
Map_SuperLib_t * pLibSuper;
|
||||
Abc_Frame_t * pAbc = Abc_FrameGetGlobalFrame();
|
||||
Vec_Str_t * vStr;
|
||||
char * pFileName;
|
||||
if ( pLib == NULL )
|
||||
|
|
|
|||
Loading…
Reference in New Issue