diff options
Diffstat (limited to 'libio/wprintf.c')
-rw-r--r-- | libio/wprintf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libio/wprintf.c b/libio/wprintf.c index 42bb412b23..f418cf515d 100644 --- a/libio/wprintf.c +++ b/libio/wprintf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1995, 1996, 1997, 1999 Free Software Foundation, Inc. +/* Copyright (C) 1991,1995,1996,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 @@ -29,7 +29,7 @@ wprintf (const wchar_t *format, ...) int done; va_start (arg, format); - done = vfwprintf (stdout, format, arg); + done = __vfwprintf (stdout, format, arg); va_end (arg); return done; |