#include<kogata/syscall.h>#include<stdio.h>voidmalloc_setup();intmain(int,char**);void__libc_start(){malloc_setup();setup_libc_stdio();// TODO : more setup ? yes, for args, for env...char*argv[]={"bin"};intret=main(1,argv);sc_exit(ret);}/* vim: set ts=4 sw=4 tw=0 noet :*/