home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / cpm / walnut-creek-CDROM / CPM / BDSC / BDSC-4 / BDSLIB.ARK / SETBUF.C < prev    next >
Text File  |  1983-07-15  |  384b  |  17 lines

  1. /*
  2.  * setbuf
  3.  * This function conforms in name and convention to the function
  4.  * in the Version 7 U**X Library but is included only for the sake
  5.  * of compatibility. It has no real advantage when running under
  6.  * CP/M 2.2. Hence, it is a dummy.
  7.  * Last Edit 7/4/83
  8.  */
  9.  
  10. void
  11. setbuf(stream, buf)
  12. FILE *stream;
  13. char *buf;
  14. {
  15.     return ;        /* really impressive eh? */
  16. }
  17.