matos/userspace/crt.c

10 lines
142 B
C

#include "libc.h"
void _start()
{
/* This starter function expects a main() function somewhere */
extern int main();
_exit(main());
}