Correct use of .Nm. Remove unused #includes.

This commit is contained in:
Philippe Charnier 1998-07-15 06:08:47 +00:00
parent c2da0fd903
commit fdb8d8965b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=37658
2 changed files with 6 additions and 8 deletions

View File

@ -34,7 +34,7 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
.\" $Id$
.\" $Id: mount_std.8,v 1.7 1997/02/22 14:32:59 peter Exp $
.\"
.Dd May 13, 1996
.Dt MOUNT_STD 8
@ -126,12 +126,11 @@ and
.Sh DIAGNOSTICS
.Bl -diag
.It argv[0] must end in _fsname
The
.Nm mount_std
command was called with a zero'th argument of
.Nm Mount_std
was called with a zeroth argument of
.Dq Li mount_std .
.It vfsload(%s)
.Nm
.Nm Mount_std
was unable to load a kernel module implementing the %s filesystem
type.
.It %s filesystem not available

View File

@ -36,14 +36,14 @@
*/
#ifndef lint
char copyright[] =
static const char copyright[] =
"@(#) Copyright (c) 1992, 1993, 1994\n\
The Regents of the University of California. All rights reserved.\n";
#endif /* not lint */
#ifndef lint
static const char rcsid[] =
"$Id: mount_std.c,v 1.6 1997/03/11 12:38:16 peter Exp $";
"$Id: mount_std.c,v 1.7 1997/03/29 03:32:46 imp Exp $";
#endif /* not lint */
#include <sys/param.h>
@ -51,7 +51,6 @@ static const char rcsid[] =
#include <err.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sysexits.h>
#include <unistd.h>