Runtime code
authorbdemsky <bdemsky>
Wed, 5 Apr 2006 22:09:52 +0000 (22:09 +0000)
committerbdemsky <bdemsky>
Wed, 5 Apr 2006 22:09:52 +0000 (22:09 +0000)
Robust/src/Runtime/runtime.c [new file with mode: 0644]

diff --git a/Robust/src/Runtime/runtime.c b/Robust/src/Runtime/runtime.c
new file mode 100644 (file)
index 0000000..6dca89f
--- /dev/null
@@ -0,0 +1,10 @@
+#include "runtime.h"
+#include "structdefs.h"
+
+int ___Object______hashcode____(struct ___Object___ * ___this___) {
+  return (int) ___this___;
+}
+
+void ___System______printInt____I(int x) {
+  printf("%d\n",x);
+}