diff options
author | Rich Felker <dalias@aerifal.cx> | 2011-04-06 16:40:19 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011-04-06 16:40:19 -0400 |
commit | 92bd4c60315554e116d4d46b6c4b66518ffd1272 (patch) | |
tree | a40a3d697bd6e1943cf8f1a2c99aa9239f44ba49 | |
parent | 97d0988fd816ff9474535cf356b53ce6a5acc6ef (diff) | |
download | musl-92bd4c60315554e116d4d46b6c4b66518ffd1272.tar.gz |
add startup abi functions, dummy for now. eventually needed for c++ support.
-rw-r--r-- | src/env/__libc_csu_fini.c | 5 | ||||
-rw-r--r-- | src/env/__libc_csu_init.c | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/src/env/__libc_csu_fini.c b/src/env/__libc_csu_fini.c new file mode 100644 index 00000000..3671efba --- /dev/null +++ b/src/env/__libc_csu_fini.c @@ -0,0 +1,5 @@ +#include "libc.h" + +void __libc_csu_fini() +{ +} diff --git a/src/env/__libc_csu_init.c b/src/env/__libc_csu_init.c new file mode 100644 index 00000000..4f68d19d --- /dev/null +++ b/src/env/__libc_csu_init.c @@ -0,0 +1,5 @@ +#include "libc.h" + +void __libc_csu_init(int argc, char **argv, char **envp) +{ +} |