Eclipse stuff

This commit is contained in:
Vítor Santos Costa 2014-03-13 12:52:08 +00:00
parent c3d0504a54
commit 242f585484

View File

@ -12,8 +12,8 @@ typedef YAP_Int BPLONG;
typedef YAP_UInt BPULONG; typedef YAP_UInt BPULONG;
typedef BPLONG *BPLONG_PTR; typedef BPLONG *BPLONG_PTR;
#define BP_TRUE TRUE #define BP_TRUE 1
#define BP_FALSE FALSE #define BP_FALSE 0
//extern TERM bp_get_call_arg(int i, int arity); //extern TERM bp_get_call_arg(int i, int arity);
#define bp_get_call_arg( i, arity) YAP_A(i) #define bp_get_call_arg( i, arity) YAP_A(i)
@ -169,7 +169,7 @@ INLINE_ONLY extern inline int
bp_mount_query_term(TERM goal) bp_mount_query_term(TERM goal)
{ {
curr_toam_status = goal; curr_toam_status = goal;
return TRUE; return BP_TRUE;
} }
#endif /* BPROLOG_H */ #endif /* BPROLOG_H */