Get rid of gcc __inline__ keywords.

Just let the compiler sort it out.
This commit is contained in:
Cas Cremers
2019-01-04 13:34:56 +01:00
parent 0f8f1054b6
commit d56c2cafe6
8 changed files with 17 additions and 17 deletions

View File

@@ -159,7 +159,7 @@ termlistDestroy (Termlist tl)
*
*@return True iff the term is an element of the termlist.
*/
__inline__ int
int
inTermlist (Termlist tl, const Term term)
{
if (term == NULL)
@@ -178,7 +178,7 @@ inTermlist (Termlist tl, const Term term)
}
//! Determine whether a term is an element of a termlist: yield pointer
__inline__ Termlist
Termlist
termlistFind (Termlist tl, const Term term)
{
#ifdef DEBUG