summaryrefslogtreecommitdiff
path: root/libc/stdlib/abort.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-02-19 05:29:35 +0000
committerEric Andersen <andersen@codepoet.org>2002-02-19 05:29:35 +0000
commitc6b92ee07f4c13cf82bfe256101e48498bb6301b (patch)
tree00a3a2e786575fa939a98dd0e095b99c6fb388a6 /libc/stdlib/abort.c
parenta7941d4f375573864334e1002aed2880ae47fa6a (diff)
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/abort.c')
-rw-r--r--libc/stdlib/abort.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/stdlib/abort.c b/libc/stdlib/abort.c
index 4c9f06a11..8db2ed025 100644
--- a/libc/stdlib/abort.c
+++ b/libc/stdlib/abort.c
@@ -46,7 +46,7 @@ Cambridge, MA 02139, USA. */
#define ABORT_INSTRUCTION
#endif
-extern void __stdio_flush_buffers(void);
+extern void weak_function __stdio_flush_buffers(void);
extern void _exit __P((int __status)) __attribute__ ((__noreturn__));
static int been_there_done_that = 0;