1988-09-15 09:49:22 +00:00
|
|
|
#include <system.h>
|
1989-02-02 12:29:14 +00:00
|
|
|
#include <back.h>
|
1988-09-15 09:49:22 +00:00
|
|
|
|
1989-02-02 12:29:14 +00:00
|
|
|
File *B_out_file;
|
1988-09-15 09:49:22 +00:00
|
|
|
|
1988-10-20 14:21:37 +00:00
|
|
|
open_back( filename)
|
1988-09-15 09:49:22 +00:00
|
|
|
char *filename;
|
|
|
|
{
|
|
|
|
if ( filename == (char *) '\0')
|
|
|
|
return( 0);
|
|
|
|
else
|
1989-02-02 12:29:14 +00:00
|
|
|
return( sys_open( filename, OP_WRITE, &B_out_file));
|
1988-09-15 09:49:22 +00:00
|
|
|
}
|
|
|
|
|