This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] / Robust / src / Runtime / runtime.c
diff --git a/Robust/src/Runtime/runtime.c b/Robust/src/Runtime/runtime.c
deleted file mode 100644 (file)
index 05d9478..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-#include "runtime.h"
-#include "structdefs.h"
-extern int classsize[];
-
-int ___Object______hashcode____(struct ___Object___ * ___this___) {
-  return (int) ___this___;
-}
-
-void ___System______printInt____I(int x) {
-  printf("%d\n",x);
-}
-
-void * allocate_new(int type) {
-  void * v=calloc(1,classsize[type]);
-  *((int *)v)=type;
-  return v;
-}