add startup abi functions, dummy for now. eventually needed for c++ support.

This commit is contained in:
Rich Felker 2011-04-06 16:40:19 -04:00
parent 97d0988fd8
commit 92bd4c6031
2 changed files with 10 additions and 0 deletions

5
src/env/__libc_csu_fini.c vendored Normal file
View File

@ -0,0 +1,5 @@
#include "libc.h"
void __libc_csu_fini()
{
}

5
src/env/__libc_csu_init.c vendored Normal file
View File

@ -0,0 +1,5 @@
#include "libc.h"
void __libc_csu_init(int argc, char **argv, char **envp)
{
}