summary refs log tree commit diff
path: root/libio/iofputws.c
diff options
context:
space:
mode:
Diffstat (limited to 'libio/iofputws.c')
-rw-r--r--libio/iofputws.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libio/iofputws.c b/libio/iofputws.c
index daad1b9836..db8ce05897 100644
--- a/libio/iofputws.c
+++ b/libio/iofputws.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1993, 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
+/* Copyright (C) 1993,1996,1997,1998,1999,2000 Free Software Foundation, Inc.
    This file is part of the GNU IO Library.
 
    This library is free software; you can redistribute it and/or
@@ -31,7 +31,7 @@ fputws (str, fp)
       const wchar_t *str;
       _IO_FILE *fp;
 {
-  _IO_size_t len = wcslen (str);
+  _IO_size_t len = __wcslen (str);
   int result = EOF;
   CHECK_FILE (fp, EOF);
   _IO_cleanup_region_start ((void (*) __P ((void *))) _IO_funlockfile, fp);