Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP
Path: utzoo!linus!decvax!harpo!seismo!hao!hplabs!hpda!fortune!wdl1!jrb
From: jrb@wdl1.UUCP (John R Blaker)
Newsgroups: net.sources
Subject: RT-11 floppy -- write.c
Message-ID: <160@wdl1.UUCP>
Date: Fri, 17-Feb-84 13:52:38 EST
Article-I.D.: wdl1.160
Posted: Fri Feb 17 13:52:38 1984
Date-Received: Sun, 19-Feb-84 03:04:58 EST
Lines: 28

/*==========================================================================*
 *			       == W R I T E ==				    *
 *==========================================================================*
 * John R Blaker -- Ford Aerospace & Communications Corporation -- Oct 1982 *
 *==========================================================================*
 * This allows the writing of files onto the disc.  This file contains the  *
 * following functions:							    *
 *	Write()		Write files on disc				    *
 *==========================================================================*
 */

/*
 * Include files
 */

#include	"rt11.h"	/* Global definitions */

/*
 * Write()
 * Stub
 */

Write()
{
	verbose("WRITE FILES ON DISC");
	trace("Got to Write()");
	error("Write function not implemented yet");
} /* Write */