These are the NFS, port mapper and mount daemon programs.  A short
summary follows:

netd.c:		main program
nfs.c:		nfs server procedures
pmap.c:		port mapper
mountd.c:	mount daemon
exports.c:	export file parser
files.c:	file access routines to DOS files
dtime.c:	DOS to Unix style time conversions and vice versa
inodes.c:	artificial inode interface to DOS files
sock.c:		socket routines
mnt_xdr.c:	XDR routines for mount prog - from Sun user-level server.
u_xdr.c:	XDR routines for the server - from Sun user-level server.

There is a makefile ("makefile") and a linker response file ("lresp").

IMPORTANT NOTE:
---------------
The include file path should be set to the RPC directory before
the default Microsoft C include directory, ie;

	set include = <RPC directory>;<default MSC dir>

CHANGES TO MSC INCLUDE FILE
---------------------------

One small addition was made to Microsoft C's include file "time.h".  I
added the Unix timeval structure:

struct timeval {		/* Unix time value structure */
	long tv_usec;
	long tv_sec;
};
