fix compilation without P

This commit is contained in:
Vitor Santos Costa 2013-10-29 12:42:55 +00:00
parent 96611027f3
commit 35b7f040d5
1 changed files with 2 additions and 0 deletions

View File

@ -188,6 +188,7 @@ Yap_Eval(Term t)
return Yap_InnerEval(t); return Yap_InnerEval(t);
} }
#ifdef P
inline static Term inline static Term
Yap_FoundArithError(Term t, Term inp) Yap_FoundArithError(Term t, Term inp)
{ {
@ -199,6 +200,7 @@ Yap_FoundArithError(Term t, Term inp)
} }
return t; return t;
} }
#endif
#define RINT(v) return(MkIntegerTerm(v)) #define RINT(v) return(MkIntegerTerm(v))