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 >
Wrap
Text File
|
1983-07-15
|
384b
|
17 lines
/*
* setbuf
* This function conforms in name and convention to the function
* in the Version 7 U**X Library but is included only for the sake
* of compatibility. It has no real advantage when running under
* CP/M 2.2. Hence, it is a dummy.
* Last Edit 7/4/83
*/
void
setbuf(stream, buf)
FILE *stream;
char *buf;
{
return ; /* really impressive eh? */
}