diff options
author | charnier <charnier@FreeBSD.org> | 1998-07-06 07:19:27 +0000 |
---|---|---|
committer | charnier <charnier@FreeBSD.org> | 1998-07-06 07:19:27 +0000 |
commit | beb07fe1b82dfa0236722c7bc4891a23f8557fec (patch) | |
tree | 1af94e571e4c5f9c1635b2e05277f289076d65d3 /sbin/mount_portal/conf.c | |
parent | 112ec6c26987e9958ff540a00d5fd04feafc449e (diff) | |
download | FreeBSD-src-beb07fe1b82dfa0236722c7bc4891a23f8557fec.zip FreeBSD-src-beb07fe1b82dfa0236722c7bc4891a23f8557fec.tar.gz |
Correct use of .Nm. Spelling. Add rcsid and remove unused #includes.
Diffstat (limited to 'sbin/mount_portal/conf.c')
-rw-r--r-- | sbin/mount_portal/conf.c | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/sbin/mount_portal/conf.c b/sbin/mount_portal/conf.c index b7f3e57..3b0d965 100644 --- a/sbin/mount_portal/conf.c +++ b/sbin/mount_portal/conf.c @@ -35,16 +35,19 @@ * SUCH DAMAGE. * * @(#)conf.c 8.2 (Berkeley) 3/27/94 - * - * $Id$ */ +#ifndef lint +static const char rcsid[] = + "$Id$"; +#endif /* not lint */ + +#include <errno.h> +#include <limits.h> #include <stdio.h> #include <stdlib.h> -#include <unistd.h> #include <string.h> -#include <errno.h> -#include <limits.h> +#include <unistd.h> #include <regex.h> #include <sys/types.h> #include <sys/param.h> |