diff options
Diffstat (limited to 'assert/assert.c')
-rw-r--r-- | assert/assert.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/assert/assert.c b/assert/assert.c index 33c6845cb4..1640fb0e77 100644 --- a/assert/assert.c +++ b/assert/assert.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1994, 1995, 1996 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1994, 1995, 1996, 1998 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 @@ -24,6 +24,10 @@ const char *__assert_program_name; +#ifdef USE_IN_LIBIO +# define fflush(s) _IO_fflush (s) +#endif + /* This function, when passed a string containing an asserted expression, a filename, and a line number, prints a message on the standard error stream of the form: @@ -31,7 +35,7 @@ const char *__assert_program_name; It then aborts program execution via a call to `abort'. */ #ifdef FATAL_PREPARE_INCLUDE -#include FATAL_PREPARE_INCLUDE +# include FATAL_PREPARE_INCLUDE #endif void |