mirror of
https://github.com/Fennix-Project/Userspace.git
synced 2025-07-11 15:19:21 +00:00
Update libc
This commit is contained in:
10
libc/runtime/crt0.c
Normal file
10
libc/runtime/crt0.c
Normal file
@ -0,0 +1,10 @@
|
||||
int main(int argc, char *argv[], char *envp[]);
|
||||
|
||||
int _start(void *Data)
|
||||
{
|
||||
int mainret = main((int)0, (char **)0, (char **)0);
|
||||
while (1)
|
||||
;
|
||||
return 0;
|
||||
}
|
||||
// C stuff
|
Reference in New Issue
Block a user