Remove C dependency, directly emit _start
[scheme.git] / rts.c
diff --git a/rts.c b/rts.c
deleted file mode 100644 (file)
index 0678901..0000000
--- a/rts.c
+++ /dev/null
@@ -1,11 +0,0 @@
-#include <stdio.h>
-#include <stdlib.h>
-
-__attribute__((__cdecl__))
-extern int scheme_entry();
-
-int main(int argc, const char**argv) {
-  int val = scheme_entry();
-  printf("%d\n", val);
-  return 0;
-}