summaryrefslogtreecommitdiff
path: root/dat.h
diff options
context:
space:
mode:
authorPeter Mikkelsen <peter@pmikkelsen.com>2021-07-08 01:40:24 +0000
committerPeter Mikkelsen <peter@pmikkelsen.com>2021-07-08 01:40:24 +0000
commit58e0109ee9ed3aa6ac2e6b0ed621820118a3d1de (patch)
tree3900945ec27bcd623c823628751031cdb2521ac1 /dat.h
parent2dce50fbd5ef72bbcd51533cf04f8722f8139d6a (diff)
Add clause/2 predicate
Diffstat (limited to 'dat.h')
-rw-r--r--dat.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/dat.h b/dat.h
index 6e93b84..9bbfef0 100644
--- a/dat.h
+++ b/dat.h
@@ -51,7 +51,6 @@ struct Clause
Term *head;
Term *body;
uvlong clausenr;
- int public;
Clause *next;
};
@@ -59,6 +58,7 @@ struct Predicate
{
Rune *name;
int arity;
+ int public;
Clause *clauses;
Predicate *next;
};