diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2022-09-19 16:13:54 -0700 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2022-09-19 16:13:54 -0700 |
commit | 6325e41681a259cf63de3aabe10b4b0930e77e56 (patch) | |
tree | bbe6ab8160bd76fa951aee6046f033efefd7f533 /src/base | |
parent | 4d183efe48dfef9b992ff46c2636973b36ccb7f4 (diff) | |
download | abc-6325e41681a259cf63de3aabe10b4b0930e77e56.tar.gz abc-6325e41681a259cf63de3aabe10b4b0930e77e56.tar.bz2 abc-6325e41681a259cf63de3aabe10b4b0930e77e56.zip |
Compiler warnings.
Diffstat (limited to 'src/base')
-rw-r--r-- | src/base/abci/abc.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/base/abci/abc.c b/src/base/abci/abc.c index a5f466a4..42761fc7 100644 --- a/src/base/abci/abc.c +++ b/src/base/abci/abc.c @@ -499,9 +499,9 @@ static int Abc_CommandAbc9LNetRead ( Abc_Frame_t * pAbc, int argc, cha static int Abc_CommandAbc9LNetSim ( Abc_Frame_t * pAbc, int argc, char ** argv ); static int Abc_CommandAbc9LNetEval ( Abc_Frame_t * pAbc, int argc, char ** argv ); static int Abc_CommandAbc9LNetOpt ( Abc_Frame_t * pAbc, int argc, char ** argv ); -#ifndef _WIN32 +//#ifndef _WIN32 static int Abc_CommandAbc9Ttopt ( Abc_Frame_t * pAbc, int argc, char ** argv ); -#endif +//#endif static int Abc_CommandAbc9LNetMap ( Abc_Frame_t * pAbc, int argc, char ** argv ); static int Abc_CommandAbc9Unmap ( Abc_Frame_t * pAbc, int argc, char ** argv ); static int Abc_CommandAbc9Struct ( Abc_Frame_t * pAbc, int argc, char ** argv ); @@ -1252,9 +1252,9 @@ void Abc_Init( Abc_Frame_t * pAbc ) Cmd_CommandAdd( pAbc, "ABC9", "&lnetsim", Abc_CommandAbc9LNetSim, 0 ); Cmd_CommandAdd( pAbc, "ABC9", "&lneteval", Abc_CommandAbc9LNetEval, 0 ); Cmd_CommandAdd( pAbc, "ABC9", "&lnetopt", Abc_CommandAbc9LNetOpt, 0 ); -#ifndef _WIN32 +//#ifndef _WIN32 Cmd_CommandAdd( pAbc, "ABC9", "&ttopt", Abc_CommandAbc9Ttopt, 0 ); -#endif +//#endif Cmd_CommandAdd( pAbc, "ABC9", "&lnetmap", Abc_CommandAbc9LNetMap, 0 ); Cmd_CommandAdd( pAbc, "ABC9", "&unmap", Abc_CommandAbc9Unmap, 0 ); Cmd_CommandAdd( pAbc, "ABC9", "&struct", Abc_CommandAbc9Struct, 0 ); @@ -42208,7 +42208,7 @@ usage: SeeAlso [] ***********************************************************************/ -#ifndef _WIN32 +//#ifndef _WIN32 int Abc_CommandAbc9Ttopt( Abc_Frame_t * pAbc, int argc, char ** argv ) { Gia_Man_t * pTemp; @@ -42302,7 +42302,7 @@ usage: Abc_Print( -2, "\t<file> : file name with simulation information\n"); return 1; } -#endif +//#endif /**Function************************************************************* |