diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2006-03-03 08:01:00 -0800 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2006-03-03 08:01:00 -0800 |
commit | 0e57e953062cd2d97573d8428f6f77853ba8535e (patch) | |
tree | 44eb008801aae04cd834aa0c02efd6cdd67a64b5 /src/sat/asat | |
parent | 9e6f8406e80c55455c464b01033040a88fd12c40 (diff) | |
download | abc-0e57e953062cd2d97573d8428f6f77853ba8535e.tar.gz abc-0e57e953062cd2d97573d8428f6f77853ba8535e.tar.bz2 abc-0e57e953062cd2d97573d8428f6f77853ba8535e.zip |
Version abc60303
Diffstat (limited to 'src/sat/asat')
-rw-r--r-- | src/sat/asat/asatmem.h | 4 | ||||
-rw-r--r-- | src/sat/asat/solver.h | 8 |
2 files changed, 11 insertions, 1 deletions
diff --git a/src/sat/asat/asatmem.h b/src/sat/asat/asatmem.h index 56115e7d..7351d77b 100644 --- a/src/sat/asat/asatmem.h +++ b/src/sat/asat/asatmem.h @@ -70,7 +70,9 @@ extern char * Asat_MmStepEntryFetch( Asat_MmStep_t * p, int nBytes extern void Asat_MmStepEntryRecycle( Asat_MmStep_t * p, char * pEntry, int nBytes ); extern int Asat_MmStepReadMemUsage( Asat_MmStep_t * p ); +#endif + //////////////////////////////////////////////////////////////////////// /// END OF FILE /// //////////////////////////////////////////////////////////////////////// -#endif + diff --git a/src/sat/asat/solver.h b/src/sat/asat/solver.h index d798a7a9..62815656 100644 --- a/src/sat/asat/solver.h +++ b/src/sat/asat/solver.h @@ -22,6 +22,10 @@ OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWA #ifndef solver_h #define solver_h +#ifdef __cplusplus +extern "C" { +#endif + #ifdef _WIN32 #define inline __inline // compatible with MS VS 6.0 #endif @@ -141,5 +145,9 @@ struct solver_t stats solver_stats; }; + +#ifdef __cplusplus +} +#endif #endif |