diff options
Diffstat (limited to 'libio/fwprintf.c')
-rw-r--r-- | libio/fwprintf.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libio/fwprintf.c b/libio/fwprintf.c index ece710dfde..6f30bc1f55 100644 --- a/libio/fwprintf.c +++ b/libio/fwprintf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1997, 1999, 2000 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1997, 1999, 2000, 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 @@ -24,7 +24,7 @@ /* Write formatted output to STREAM from the format string FORMAT. */ /* VARARGS2 */ int -fwprintf (FILE *stream, const wchar_t *format, ...) +__fwprintf (FILE *stream, const wchar_t *format, ...) { va_list arg; int done; @@ -35,3 +35,4 @@ fwprintf (FILE *stream, const wchar_t *format, ...) return done; } +weak_alias (__fwprintf, fwprintf) |