From 4bffd2262a330523e7a02b694ccd09789557a4a1 Mon Sep 17 00:00:00 2001 From: stasinos Date: Tue, 26 Jun 2001 09:40:34 +0000 Subject: [PATCH] fixes the HP cc MkIntegerTerm bug and brings the code inline with the C-Interface documentation git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@101 b08c6af1-5177-4d33-ba66-4b1c6b8b522a --- m4/Yatom.h.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/m4/Yatom.h.m4 b/m4/Yatom.h.m4 index 3de286f26..96d5cb61b 100644 --- a/m4/Yatom.h.m4 +++ b/m4/Yatom.h.m4 @@ -41,7 +41,7 @@ Destructor(Prop, RepFunctor, FunctorEntry *, p, p) Constructor(Prop, AbsFunctor, FunctorEntry *, p, p) #endif -Inline(ArityOfFunctor, unsigned int, Functor, Fun, ((FunctorEntry *)Fun)->ArityOfFE) +Inline(ArityOfFunctor, Int, Functor, Fun, ((FunctorEntry *)Fun)->ArityOfFE) Inline(NameOfFunctor, Atom, Functor, Fun, ((FunctorEntry *)Fun)->NameOfFE) Inline(IsFunctorProperty, PropFlags, int, flags, (flags == FunctorProperty) )