aboutsummaryrefslogtreecommitdiff
path: root/vcal.h
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2019-02-05 17:51:33 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2019-02-05 18:16:19 +0100
commit7cbfe2fa7507296e01b442df382c926f88e4d9a0 (patch)
treedb50e0cf54c4526c663f1d77fe56d6ba3f69fdd2 /vcal.h
parentImprove templating macros. (diff)
downloadcalp-7cbfe2fa7507296e01b442df382c926f88e4d9a0.tar.gz
calp-7cbfe2fa7507296e01b442df382c926f88e4d9a0.tar.xz
Fix up GC a tiny bit.
Diffstat (limited to 'vcal.h')
-rw-r--r--vcal.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/vcal.h b/vcal.h
index 74ea819b..d25a77aa 100644
--- a/vcal.h
+++ b/vcal.h
@@ -80,7 +80,10 @@ int push_event(vcalendar* cal, vevent* ev);
* TODO
* remove it.
*/
-extern content_line** clines;
-extern int cline_ptr;
+extern void** gc_vect;
+extern int gc_ptr;
+
+int gc_register(void* ptr);
+int gc_free(void* ptr);
#endif /* VCAL_H */