#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;
}


syntax highlighted by Code2HTML, v. 0.9.1