Initial revision

This commit is contained in:
kaashoek
1987-11-20 10:41:03 +00:00
parent fdb12648fc
commit 5888a92b2c
123 changed files with 3451 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#include <out.h>
#include <arch.h>
#include <ranlib.h>
#include "data.h"
#include "header.h"
do_open( filename)
char *filename;
{
if ( filename == (char *) '\0')
return( 0);
else
return( wr_open( filename));
}