MentOS
0.8.0
The Mentoring Operating System
|
Contains the programs initialization procedure. More...
Functions | |
int | __libc_start_main (int(*main)(int, char **, char **), int argc, char *argv[], char *envp[]) |
The entry point to every program. More... | |
Variables | |
char ** | environ |
Reference to the environ variable in setenv.c . | |
Contains the programs initialization procedure.
int __libc_start_main | ( | int(*)(int, char **, char **) | main, |
int | argc, | ||
char * | argv[], | ||
char * | envp[] | ||
) |
The entry point to every program.
main | Pointer to the main function. |
argc | The number of arguments. |
argv | The pointer to the arguments. |
envp | The pointer to the environmental variables. |
main
function.