1988-09-28 16:47:47 +00:00
|
|
|
#include <system.h>
|
1989-01-27 14:15:55 +00:00
|
|
|
#include <back.h>
|
1988-09-28 16:47:47 +00:00
|
|
|
|
1989-01-27 14:15:55 +00:00
|
|
|
File *B_out_file;
|
1988-09-28 16:47:47 +00:00
|
|
|
|
|
|
|
open_back( filename)
|
|
|
|
char *filename;
|
|
|
|
{
|
|
|
|
if ( filename == (char *) '\0')
|
|
|
|
return( 0);
|
|
|
|
else
|
1989-01-27 14:15:55 +00:00
|
|
|
return( sys_open( filename, OP_WRITE, &B_out_file));
|
1988-09-28 16:47:47 +00:00
|
|
|
}
|
|
|
|
|