home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Interactive Guide
/
c-cplusplus-interactive-guide.iso
/
c_ref
/
csource3
/
187_01
/
cant.c
< prev
next >
Wrap
C/C++ Source or Header
|
1985-12-30
|
600b
|
19 lines
/*@*****************************************************/
/*@ */
/*@ cant - tell user that we cannot open given file. */
/*@ Returns to caller. */
/*@ */
/*@ Usage: cant(filename); */
/*@ where filename is an ASCIIZ string. */
/*@ */
/*@*****************************************************/
cant(s)
char *s;
{
puts(s);
puts(": cannot open\n");
}