mirror of
https://github.com/frida/tinycc
synced 2024-12-01 20:07:03 +03:00
40 lines
980 B
C
40 lines
980 B
C
// =============================================
|
|
// crt1.c
|
|
|
|
#include <stdlib.h>
|
|
|
|
#define __UNKNOWN_APP 0
|
|
#define __CONSOLE_APP 1
|
|
#define __GUI_APP 2
|
|
void __set_app_type(int);
|
|
void _controlfp(unsigned a, unsigned b);
|
|
|
|
typedef struct
|
|
{
|
|
int newmode;
|
|
} _startupinfo;
|
|
|
|
int __getmainargs(int *pargc, char ***pargv, char ***penv, int globb, _startupinfo*);
|
|
int main(int argc, char **argv, char **env);
|
|
|
|
int _start(void)
|
|
{
|
|
__TRY__
|
|
int argc; char **argv; char **env; int ret;
|
|
_startupinfo start_info = {0};
|
|
|
|
_controlfp(0x10000, 0x30000);
|
|
__set_app_type(__CONSOLE_APP);
|
|
if (__getmainargs(&argc, &argv, &env, 0, &start_info)) {
|
|
// __getmainargs failed because possible few memory on the heap.
|
|
fprintf(stderr, "Error getting the main args.");
|
|
// terminate with exit code of 3, similar to abort()
|
|
ExitProcess(3);
|
|
}
|
|
|
|
ret = main(argc, argv, env);
|
|
exit(ret);
|
|
}
|
|
|
|
// =============================================
|