2.9BSD/usr/src/lib/c/stdio/putw.c

Compare this file to the similar file:
Show the results in this format:

/*	@(#)putw.c	2.1	SCCS id keyword	*/
#include	<stdio.h>

putw(i, iop)
register i;
register struct _iobuf *iop;
{
	putc(i, iop);
	putc(i>>8, iop);
}