changes to hide names and some fixes

This commit is contained in:
ceriel
1989-01-17 09:48:32 +00:00
parent 56c0f3bc5b
commit b800af87af
7 changed files with 45 additions and 50 deletions

View File

@@ -1,6 +1,6 @@
#include <system.h>
File *out_file;
File *_out_file;
open_back( filename)
char *filename;
@@ -8,6 +8,6 @@ char *filename;
if ( filename == (char *) '\0')
return( 0);
else
return( sys_open( filename, OP_WRITE, &out_file));
return( sys_open( filename, OP_WRITE, &_out_file));
}