aboutsummaryrefslogtreecommitdiff
path: root/libio/iofflush.c
diff options
context:
space:
mode:
Diffstat (limited to 'libio/iofflush.c')
-rw-r--r--libio/iofflush.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/libio/iofflush.c b/libio/iofflush.c
index c45023c..6f12e9b 100644
--- a/libio/iofflush.c
+++ b/libio/iofflush.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1993, 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
+/* Copyright (C) 1993,1995,1996,1997,1998,2002 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
@@ -33,7 +33,7 @@ _IO_fflush (fp)
_IO_FILE *fp;
{
if (fp == NULL)
- return _IO_flush_all ();
+ return INTUSE(_IO_flush_all) ();
else
{
int result;
@@ -46,6 +46,7 @@ _IO_fflush (fp)
return result;
}
}
+INTDEF(_IO_fflush)
#ifdef weak_alias
weak_alias (_IO_fflush, fflush)