ack/mach/sun3/ce/do_open.c

14 lines
188 B
C
Raw Normal View History

1988-09-28 16:47:47 +00:00
#include <system.h>
1989-01-17 09:48:32 +00:00
File *_out_file;
1988-09-28 16:47:47 +00:00
open_back( filename)
char *filename;
{
if ( filename == (char *) '\0')
return( 0);
else
1989-01-17 09:48:32 +00:00
return( sys_open( filename, OP_WRITE, &_out_file));
1988-09-28 16:47:47 +00:00
}