1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-25 11:37:56 +00:00
freebsd/contrib/libio/stdio/putw.c

16 lines
242 B
C

#include "libioP.h"
#include "stdio.h"
#undef putw
int
putw(w, fp)
int w;
FILE *fp;
{
_IO_size_t written;
CHECK_FILE(fp, EOF);
written = _IO_sputn(fp, (const char *)&w, sizeof(w));
return written == sizeof(w) ? 0 : EOF;
}