2018-10-31 02:09:11 +01:00
|
|
|
#include <stdio.h>
|
2018-11-08 01:23:23 +01:00
|
|
|
#include <string.h>
|
2018-10-22 14:06:22 +02:00
|
|
|
#include <Kernel/Syscall.h>
|
2018-10-28 09:36:21 +01:00
|
|
|
#include <AK/StringImpl.h>
|
2018-10-22 14:06:22 +02:00
|
|
|
|
|
|
|
extern "C" int main(int, char**);
|
|
|
|
|
2018-10-25 12:06:00 +02:00
|
|
|
int errno;
|
2018-10-31 17:50:43 +01:00
|
|
|
char** environ;
|
|
|
|
|
|
|
|
extern "C" void __malloc_init();
|
2018-11-11 10:11:09 +01:00
|
|
|
extern "C" void __stdio_init();
|
2018-10-25 12:06:00 +02:00
|
|
|
|
2018-10-22 14:13:17 +02:00
|
|
|
extern "C" int _start()
|
2018-10-22 14:06:22 +02:00
|
|
|
{
|
2018-10-25 12:06:00 +02:00
|
|
|
errno = 0;
|
2018-10-31 02:09:11 +01:00
|
|
|
|
2018-11-11 10:11:09 +01:00
|
|
|
__stdio_init();
|
2018-11-08 11:37:01 +01:00
|
|
|
__malloc_init();
|
|
|
|
|
2018-12-21 02:10:45 +01:00
|
|
|
StringImpl::initialize_globals();
|
2018-10-28 09:36:21 +01:00
|
|
|
|
2018-10-31 17:50:43 +01:00
|
|
|
int status = 254;
|
2018-10-26 11:16:56 +02:00
|
|
|
int argc;
|
|
|
|
char** argv;
|
2018-12-21 03:02:06 +01:00
|
|
|
int rc = syscall(SC_get_arguments, &argc, &argv);
|
2018-10-31 17:50:43 +01:00
|
|
|
if (rc < 0)
|
|
|
|
goto epilogue;
|
2018-12-21 03:02:06 +01:00
|
|
|
rc = syscall(SC_get_environment, &environ);
|
2018-10-31 17:50:43 +01:00
|
|
|
if (rc < 0)
|
|
|
|
goto epilogue;
|
|
|
|
status = main(argc, argv);
|
|
|
|
|
2018-11-10 00:56:10 +01:00
|
|
|
fflush(stdout);
|
|
|
|
fflush(stderr);
|
|
|
|
|
2018-10-31 17:50:43 +01:00
|
|
|
epilogue:
|
2018-12-21 03:02:06 +01:00
|
|
|
syscall(SC_exit, status);
|
2018-10-22 14:06:22 +02:00
|
|
|
|
|
|
|
// Birger's birthday <3
|
|
|
|
return 20150614;
|
|
|
|
}
|