netinet/in.h: add IPPROTO_MH
[uclibc-ng.git] / libc / stdio / fputws.c
blob7a18921882634558671c44375eb1ad7b1194f5ef
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.
6 */
8 #include "_stdio.h"
12 #ifdef __DO_UNLOCKED
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)
26 #endif
28 #elif defined __UCLIBC_HAS_THREADS__
30 int fputws(const wchar_t *__restrict ws, register FILE *__restrict stream)
32 int retval;
33 __STDIO_AUTO_THREADLOCK_VAR;
35 __STDIO_AUTO_THREADLOCK(stream);
37 retval = fputws_unlocked(ws, stream);
39 __STDIO_AUTO_THREADUNLOCK(stream);
41 return retval;
43 libc_hidden_def(fputws)
45 #endif