blob: 984a3cd5f4e420087b03f273823e1c3fc3f7193e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <syscall.h>
extern int main(int, char**);
void __libkogata_start() {
// TODO : setup
int ret = main(0, 0);
exit(ret);
}
/* vim: set ts=4 sw=4 tw=0 noet :*/
|