mirror of
https://github.com/Fennix-Project/Userspace.git
synced 2025-05-28 15:34:26 +00:00
10 lines
182 B
C
10 lines
182 B
C
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
|