home *** CD-ROM | disk | FTP | other *** search
/ Serving the Web / ServingTheWeb1995.disc1of1.iso / linux / slacksrce / d / libc / libc-4.6 / libc-4 / libc-linux / libio-4.6.26 / stdio / putw.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-08-12  |  242 b   |  16 lines

  1. #include "libioP.h"
  2. #include "stdio.h"
  3.  
  4. #undef putw
  5.  
  6. int
  7. putw(w, fp)
  8.      int w;
  9.      FILE *fp;
  10. {
  11.   _IO_size_t written;
  12.   CHECK_FILE(fp, EOF);
  13.   written = _IO_sputn(fp, (const char *)&w, sizeof(w));
  14.   return written == sizeof(w) ? 0 : EOF;
  15. }
  16.