diff options
Diffstat (limited to 'sysdeps/generic/abort.c')
-rw-r--r-- | sysdeps/generic/abort.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sysdeps/generic/abort.c b/sysdeps/generic/abort.c index a38022a1a9..91c504607a 100644 --- a/sysdeps/generic/abort.c +++ b/sysdeps/generic/abort.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1993, 1995, 1996, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1991, 93, 95, 96, 97, 98 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -31,6 +31,10 @@ # define ABORT_INSTRUCTION #endif +#ifdef USE_IN_LIBIO +# define fflush(s) _IO_fflush (s) +#endif + /* We must avoid to run in circles. Therefore we remember how far we already got. */ static int stage; |