summaryrefslogtreecommitdiff
path: root/functions.h
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <matthias@benkard.de>2008-08-11 19:07:12 +0200
committerMatthias Andreas Benkard <matthias@benkard.de>2008-08-11 19:07:12 +0200
commit7af4077884b2a9aadbed2fd8ff56266874252c35 (patch)
tree6623316f70164b9b2bf62ed1625d278c6fc26a80 /functions.h
parent0e5c25802c9d069a290555629f35f93091839b09 (diff)
LLVM compiler: Support %LAMBDA, PROGN, %LOOP, lexical variables, and function calls.
Diffstat (limited to 'functions.h')
-rw-r--r--functions.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/functions.h b/functions.h
index 84085a9..8f3e70e 100644
--- a/functions.h
+++ b/functions.h
@@ -30,6 +30,10 @@
#endif
+#ifdef __cplusplus
+extern "C" {
+#endif
+
NSString *MLKPrintToString (id object);
BOOL MLKFixnumP (id thing);
@@ -78,3 +82,8 @@ void MLKSetForeignValueWithLispValue (void *destination, id value, MLKForeignTyp
id MLKLispValueWithForeignValue (void *source, MLKForeignType type);
id MLKInterpretedFunctionTrampoline (void *target, ...);
+
+
+#ifdef __cplusplus
+}
+#endif