diff options
Diffstat (limited to 'libio/vwprintf.c')
-rw-r--r-- | libio/vwprintf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libio/vwprintf.c b/libio/vwprintf.c index cfb03c0b26..814fdf32bf 100644 --- a/libio/vwprintf.c +++ b/libio/vwprintf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1993, 1995, 1997, 1999 Free Software Foundation, Inc. +/* Copyright (C) 1991,1993,1995,1997,1999,2001 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 @@ -27,5 +27,5 @@ vwprintf (format, arg) const wchar_t *format; __gnuc_va_list arg; { - return vfwprintf (stdout, format, arg); + return __vfwprintf (stdout, format, arg); } |