summaryrefslogtreecommitdiff
path: root/ldso/ldso/boot1.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-04-27 19:27:16 +0000
committerEric Andersen <andersen@codepoet.org>2001-04-27 19:27:16 +0000
commit02beefe984ca176ed5b8d6c58257fba026c509cd (patch)
tree0af5ac493694ada35b373fa00e945cab19d2a4c6 /ldso/ldso/boot1.c
parent081bde3695891d36a8fe32a3b1e5b6f945446a61 (diff)
Eliminate the useless _dl_interpreter_exit function
Diffstat (limited to 'ldso/ldso/boot1.c')
-rw-r--r--ldso/ldso/boot1.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/ldso/ldso/boot1.c b/ldso/ldso/boot1.c
index dd66b51b2..3b613fb87 100644
--- a/ldso/ldso/boot1.c
+++ b/ldso/ldso/boot1.c
@@ -151,7 +151,6 @@ unsigned int * _dl_envp;
RESULT = hash; \
}
extern int _dl_linux_resolve(void);
-extern int _dl_interpreter_exit(int);
extern char * _dl_strdup(const char *);
extern char * _dl_getenv(char * symbol, char ** envp);
extern void _dl_unsetenv(char * symbol, char ** envp);
@@ -997,9 +996,3 @@ char * _dl_strdup(const char * string){
return retval;
}
-/* In principle we could do the .fini stuff here, but we already
- registered this stuff with atexit */
-int _dl_interpreter_exit(int exitcode){
-/* _dl_fdprintf(2, "Hey, look where I am!\n"); */
- return 0;
-}