ack/mach/vax4/ce/do_open.c

15 lines
208 B
C
Raw Normal View History

1988-09-15 09:49:22 +00:00
#include <system.h>
#include <back.h>
1988-09-15 09:49:22 +00:00
File *B_out_file;
1988-09-15 09:49:22 +00:00
open_back( filename)
1988-09-15 09:49:22 +00:00
char *filename;
{
if ( filename == (char *) '\0')
return( 0);
else
return( sys_open( filename, OP_WRITE, &B_out_file));
1988-09-15 09:49:22 +00:00
}