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