matos/userspace/crt.c

10 lines
142 B
C
Raw Normal View History

2021-11-05 23:02:23 +01:00
#include "libc.h"
void _start()
{
/* This starter function expects a main() function somewhere */
extern int main();
_exit(main());
}