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.
11 /* SUSv2 Legacy function -- need not be reentrant. */
13 int putw(int w
, FILE *stream
)
16 /* If w is passed in a register, enable the following. */
24 return fwrite_unlocked((void *) PW
, sizeof(int), 1, stream
) - 1;
26 return (fwrite_unlocked((void *) PW
, sizeof(int), 1, stream
) != 0)