[net.sources] RT-11 floppy -- write.c

jrb@wdl1.UUCP (John R Blaker) (02/17/84)

/*==========================================================================*
 *			       == 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 */