1 /* Copyright (C) 2004 Manuel Novoa III <mjn3@codepoet.org>
3 * GNU Library General Public License (LGPL) version 2 or later.
5 * Dedicated to Toni. See uClibc/DEDICATION.mjn3 for details.
14 int fputws_unlocked(const wchar_t *__restrict ws
,
15 register FILE *__restrict stream
)
17 size_t n
= wcslen(ws
);
19 return (_wstdio_fwrite(ws
, n
, stream
) == n
) ? 0 : -1;
21 libc_hidden_def(fputws_unlocked
)
23 #ifndef __UCLIBC_HAS_THREADS__
24 strong_alias(fputws_unlocked
,fputws
)
25 libc_hidden_def(fputws
)
28 #elif defined __UCLIBC_HAS_THREADS__
30 int fputws(const wchar_t *__restrict ws
, register FILE *__restrict stream
)
33 __STDIO_AUTO_THREADLOCK_VAR
;
35 __STDIO_AUTO_THREADLOCK(stream
);
37 retval
= fputws_unlocked(ws
, stream
);
39 __STDIO_AUTO_THREADUNLOCK(stream
);
43 libc_hidden_def(fputws
)