change define SBA to YAPOR_SBA

This commit is contained in:
Joao
2011-03-30 15:32:59 +01:00
parent 836f3adc9b
commit 3e148c3541
31 changed files with 265 additions and 265 deletions

View File

@@ -33,7 +33,7 @@ SDeref (Term a)
{
Term *b = (Term *) a;
a = *b;
#if SBA
#if YAPOR_SBA
if (a == (0))
return (CELL) b;
#else
@@ -50,7 +50,7 @@ SDerefa (CELL * b)
Term a = *b;
while (IsVarTerm (a))
{
#if SBA
#if YAPOR_SBA
if (a == (0))
return (CELL) b;
#else
@@ -69,7 +69,7 @@ SADerefa (CELL * b)
Term a = *b;
while (IsVarTerm (a))
{
#if SBA
#if YAPOR_SBA
if (a == (0))
return b;
#else