home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CP/M
/
CPM_CDROM.iso
/
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? */
}