diff options
author | charnier <charnier@FreeBSD.org> | 1998-07-15 06:08:47 +0000 |
---|---|---|
committer | charnier <charnier@FreeBSD.org> | 1998-07-15 06:08:47 +0000 |
commit | ab2debff1bd73dae58bc0ecf7bee4237a683082e (patch) | |
tree | da8da1cbbb948cbfc27e4de5bf52969fe66869ae /sbin/mount_std/mount_std.c | |
parent | 99afdcef51240ef47cc3fe2d137f0142c2f3899f (diff) | |
download | FreeBSD-src-ab2debff1bd73dae58bc0ecf7bee4237a683082e.zip FreeBSD-src-ab2debff1bd73dae58bc0ecf7bee4237a683082e.tar.gz |
Correct use of .Nm. Remove unused #includes.
Diffstat (limited to 'sbin/mount_std/mount_std.c')
-rw-r--r-- | sbin/mount_std/mount_std.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sbin/mount_std/mount_std.c b/sbin/mount_std/mount_std.c index e85f4b3..f9ae7d6 100644 --- a/sbin/mount_std/mount_std.c +++ b/sbin/mount_std/mount_std.c @@ -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> |