putw X
1: #include <stdio.h> 2: 3: putw(i, iop) 4: register i; 5: register struct _iobuf *iop; 6: { 7: putc(i, iop); 8: putc(i>>8, iop); 9: }