diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-02-19 05:29:35 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-02-19 05:29:35 +0000 |
commit | c6b92ee07f4c13cf82bfe256101e48498bb6301b (patch) | |
tree | 00a3a2e786575fa939a98dd0e095b99c6fb388a6 /libc/stdlib/atexit.c | |
parent | a7941d4f375573864334e1002aed2880ae47fa6a (diff) | |
download | uClibc-alpine-c6b92ee07f4c13cf82bfe256101e48498bb6301b.tar.bz2 uClibc-alpine-c6b92ee07f4c13cf82bfe256101e48498bb6301b.tar.xz |
Doh! Miles Bader noticed a couple of spots where I forgot
to mark __stdio_flush_buffers with weak_function. Oops!
Diffstat (limited to 'libc/stdlib/atexit.c')
-rw-r--r-- | libc/stdlib/atexit.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libc/stdlib/atexit.c b/libc/stdlib/atexit.c index 9164b2ac6..d22d6a5e7 100644 --- a/libc/stdlib/atexit.c +++ b/libc/stdlib/atexit.c @@ -44,8 +44,6 @@ typedef enum { ef_on_exit } ef_type; /* exit function types */ -extern void __stdio_flush_buffers(void); - /* this is in the L_exit object */ extern void (*__exit_cleanup) (int); @@ -143,7 +141,7 @@ void __exit_handler(int status) #endif #ifdef L_exit -extern void __stdio_flush_buffers(void); +extern void weak_function __stdio_flush_buffers(void); void (*__exit_cleanup) (int) = 0; /* |