diff runtime/builtin.h @ 32:9ee9adc696e7

Merged changes
author Mike Pavone <pavone@retrodev.com>
date Mon, 28 Sep 2009 19:49:06 -0400
parents 914ad38f9b59
children 495dddadd058
line wrap: on
line diff
--- a/runtime/builtin.h	Mon Sep 28 19:48:45 2009 -0400
+++ b/runtime/builtin.h	Mon Sep 28 19:49:06 2009 -0400
@@ -2,6 +2,9 @@
 #define _BUILTIN_H_
 #include "plat_types.h"
 
+#include "object.h"
+#include "func.h"
+
 //Builtin Types
 enum {
 	TYPE_UINT8 = 1,
@@ -43,4 +46,7 @@
 void register_builtin_types();
 void register_builtin_type(uint32_t type);
 
+//TODO: Remove this when it's possible to write Print in Rhope
+FuncDef(Print)
+
 #endif //_BUILTIN_H_