netinet/in.h: add IPPROTO_MH
[uclibc-ng.git] / libc / stdio / putw.c
blobffdb11478cbecd4d56c7c87a81f5889ab45170f9
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"
11 /* SUSv2 Legacy function -- need not be reentrant. */
13 int putw(int w, FILE *stream)
15 #define PW &w
16 /* If w is passed in a register, enable the following. */
17 #if 0
18 #undef PW
19 int PW[1];
20 PW[0] = w;
21 #endif
23 #if EOF == -1
24 return fwrite_unlocked((void *) PW, sizeof(int), 1, stream) - 1;
25 #else
26 return (fwrite_unlocked((void *) PW, sizeof(int), 1, stream) != 0)
27 ? 0 : EOF;
28 #endif