Newer
Older
Scratch / mobius / src / crt0.c
@Christopher W. Olsen Christopher W. Olsen on 25 Oct 2019 257 bytes Scratch
#include <stdlib.h>
#include <os/os.h>

/*
 * mainCRTStartup
 *
 * The entry point for applications linked to libc.dll.
 *	Initializes libc and calls the program's main, then terminates the process.
 */

int main();

void mainCRTStartup()
{
	exit(main());
}