summaryrefslogtreecommitdiff
path: root/src/runtime/c/pgf/hopu.c
diff options
context:
space:
mode:
authorkrasimir <krasimir@chalmers.se>2017-04-19 09:34:23 +0000
committerkrasimir <krasimir@chalmers.se>2017-04-19 09:34:23 +0000
commit7d72d99c2f7fc228d71df627a10a2ff776335b2b (patch)
treef4629cb53ba213a56f3f8faddae3cc77595c077a /src/runtime/c/pgf/hopu.c
parent33ec916c9c8a7656583ef31947c5ff81b029d3a7 (diff)
explicitly classify all functions in libpgf as either internal or API functions
Diffstat (limited to 'src/runtime/c/pgf/hopu.c')
-rw-r--r--src/runtime/c/pgf/hopu.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/runtime/c/pgf/hopu.c b/src/runtime/c/pgf/hopu.c
index d94804625..39aae6db4 100644
--- a/src/runtime/c/pgf/hopu.c
+++ b/src/runtime/c/pgf/hopu.c
@@ -2,7 +2,8 @@
#include "reasoner.h"
#include "hopu.h"
-void pgf_pattern_unify(PgfReasoner* rs, PgfClosure* c1, PgfClosure* c2)
+PGF_INTERNAL void
+pgf_pattern_unify(PgfReasoner* rs, PgfClosure* c1, PgfClosure* c2)
{
c1 = rs->eval_gates->enter(rs, c1);
c2 = rs->eval_gates->enter(rs, c2);