mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-15 21:26:47 +00:00
13 lines
255 B
C
13 lines
255 B
C
|
|
#include <libc/stdio.h>
|
|
#include <libc/stdlib.h>
|
|
|
|
extern int main(int, char **);
|
|
|
|
void _start(int argc, char **argv)
|
|
{
|
|
// printf("before main\n");
|
|
int retval = main(argc, argv);
|
|
// printf("before exit, code=%d\n", retval);
|
|
exit(retval);
|
|
} |