diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-04-01 11:44:34 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-04-01 11:44:34 +0000 |
commit | 193d725142ec7f946088890e0654a11db0c3c6c8 (patch) | |
tree | 2fca0a6bc97debf90869e029f623f22a2cf3acde /libc/misc | |
parent | 556cb45061f0c89831972fc6c8554d3b108c3009 (diff) |
Patches from Yoshinori Sato <qzb04471@nifty.ne.jp> to fix h8300
support for pthreads and update for the latest and greatest.
Diffstat (limited to 'libc/misc')
-rw-r--r-- | libc/misc/internals/__uClibc_main.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libc/misc/internals/__uClibc_main.c b/libc/misc/internals/__uClibc_main.c index ddc013505..da68e788f 100644 --- a/libc/misc/internals/__uClibc_main.c +++ b/libc/misc/internals/__uClibc_main.c @@ -49,6 +49,9 @@ void __uClibc_empty_func(void) { } extern void exit (int status) __attribute__ ((__noreturn__)); +extern void _init(void); +extern void _fini(void); +extern void _stdio_init(void); weak_alias(__uClibc_empty_func, _init); weak_alias(__uClibc_empty_func, _fini); weak_alias(__uClibc_empty_func, _stdio_init); |