diff options
author | Baruch Sterin <baruchs@gmail.com> | 2015-10-16 14:02:38 -0700 |
---|---|---|
committer | Baruch Sterin <baruchs@gmail.com> | 2015-10-16 14:02:38 -0700 |
commit | 0e1eb98988fc82a30b95b755966d3efd416d8cbf (patch) | |
tree | 8905d387809a01777ec9fa056f1f382a679281a1 /src/bdd/cudd/cuddGroup.c | |
parent | 8810ef12da3f56523a95863d6583f09531dfe8de (diff) | |
download | abc-0e1eb98988fc82a30b95b755966d3efd416d8cbf.tar.gz abc-0e1eb98988fc82a30b95b755966d3efd416d8cbf.tar.bz2 abc-0e1eb98988fc82a30b95b755966d3efd416d8cbf.zip |
make sure all of ABC and related libraries are in the same namespace (when compiled with ABC_NAMESPACE) by removing extern "C" from function definitions
Diffstat (limited to 'src/bdd/cudd/cuddGroup.c')
-rw-r--r-- | src/bdd/cudd/cuddGroup.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/bdd/cudd/cuddGroup.c b/src/bdd/cudd/cuddGroup.c index 731f8147..e0b9ccf5 100644 --- a/src/bdd/cudd/cuddGroup.c +++ b/src/bdd/cudd/cuddGroup.c @@ -103,13 +103,7 @@ ABC_NAMESPACE_IMPL_START /* Type declarations */ /*---------------------------------------------------------------------------*/ -#ifdef __cplusplus -extern "C" { -#endif typedef int (*DD_CHKFP)(DdManager *, int, int); -#ifdef __cplusplus -} -#endif /*---------------------------------------------------------------------------*/ /* Variable declarations */ @@ -139,10 +133,6 @@ static unsigned int originalSize; /* Macro declarations */ /*---------------------------------------------------------------------------*/ -#ifdef __cplusplus -extern "C" { -#endif - /**AutomaticStart*************************************************************/ /*---------------------------------------------------------------------------*/ @@ -176,10 +166,6 @@ static int ddIsVarHandled (DdManager *dd, int index); /**AutomaticEnd***************************************************************/ -#ifdef __cplusplus -} -#endif - /*---------------------------------------------------------------------------*/ /* Definition of exported functions */ /*---------------------------------------------------------------------------*/ |