home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l200 / 6.ddi / LIB / DAWRITE.C < prev    next >
Encoding:
C/C++ Source or Header  |  1986-08-21  |  293 b   |  15 lines

  1. /*    da_write(fd, buf, len) writes len characters to a file
  2.  
  3.     Copyright (c) 1983 by James F. Gimpel
  4.     Copyright (c) 1983, 1984 by JMI Software Consultants, Inc.
  5. */
  6. #include "acom.h"
  7.  
  8. INT da_write(fd, buf, len)
  9.     FILE fd;
  10.     TEXT *buf;
  11.     BYTES len;
  12.     {
  13.     return (write(fd, buf, len));
  14.     }
  15.