diff options
Diffstat (limited to 'libio/swprintf.c')
-rw-r--r-- | libio/swprintf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libio/swprintf.c b/libio/swprintf.c index f0cb637b27..b5112e4e1c 100644 --- a/libio/swprintf.c +++ b/libio/swprintf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1995, 1997, 1998, 1999 Free Software Foundation, Inc. +/* Copyright (C) 1991,1995,1997,1998,1999,2000 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 @@ -31,7 +31,7 @@ swprintf (s, n, format) int done; va_start (arg, format); - done = vswprintf (s, n, format, arg); + done = __vswprintf (s, n, format, arg); va_end (arg); return done; |