home *** CD-ROM | disk | FTP | other *** search
- /* da_write(fd, buf, len) writes len characters to a file
-
- Copyright (c) 1983 by James F. Gimpel
- Copyright (c) 1983, 1984 by JMI Software Consultants, Inc.
- */
- #include "acom.h"
-
- INT da_write(fd, buf, len)
- FILE fd;
- TEXT *buf;
- BYTES len;
- {
- return (write(fd, buf, len));
- }