diff options
author | gad <gad@FreeBSD.org> | 2003-07-14 20:20:58 +0000 |
---|---|---|
committer | gad <gad@FreeBSD.org> | 2003-07-14 20:20:58 +0000 |
commit | d806166ff83e144b130dd3b12edd5a89ae33ea46 (patch) | |
tree | dfeb8b0e478279b8d9ab32b2e5bc2a72960a168e /usr.sbin/lpr/common_source | |
parent | 978493a28115fbd966965aee4d2d5cff12f6329e (diff) | |
download | FreeBSD-src-d806166ff83e144b130dd3b12edd5a89ae33ea46.zip FreeBSD-src-d806166ff83e144b130dd3b12edd5a89ae33ea46.tar.gz |
Get the 'sccsid' lines even closer to correct style(9) form. The
'#ifdef lint/#endif' around the lines should not have been removed.
Also add blank lines where one (per file) was missing.
Reviewed by: First part noticed by bde, blank lines noticed by me
MFC after: 15 days
Diffstat (limited to 'usr.sbin/lpr/common_source')
-rw-r--r-- | usr.sbin/lpr/common_source/common.c | 3 | ||||
-rw-r--r-- | usr.sbin/lpr/common_source/displayq.c | 3 | ||||
-rw-r--r-- | usr.sbin/lpr/common_source/request.c | 1 | ||||
-rw-r--r-- | usr.sbin/lpr/common_source/rmjob.c | 3 | ||||
-rw-r--r-- | usr.sbin/lpr/common_source/startdaemon.c | 3 |
5 files changed, 13 insertions, 0 deletions
diff --git a/usr.sbin/lpr/common_source/common.c b/usr.sbin/lpr/common_source/common.c index 1ca43a0..d2ffb6a 100644 --- a/usr.sbin/lpr/common_source/common.c +++ b/usr.sbin/lpr/common_source/common.c @@ -37,8 +37,11 @@ */ #if 0 +#ifndef lint static char sccsid[] = "@(#)common.c 8.5 (Berkeley) 4/28/95"; +#endif /* not lint */ #endif + #include "lp.cdefs.h" /* A cross-platform version of <sys/cdefs.h> */ __FBSDID("$FreeBSD$"); diff --git a/usr.sbin/lpr/common_source/displayq.c b/usr.sbin/lpr/common_source/displayq.c index f3c02d0..cdac70c 100644 --- a/usr.sbin/lpr/common_source/displayq.c +++ b/usr.sbin/lpr/common_source/displayq.c @@ -32,8 +32,11 @@ */ #if 0 +#ifndef lint static char sccsid[] = "@(#)displayq.c 8.4 (Berkeley) 4/28/95"; +#endif /* not lint */ #endif + #include "lp.cdefs.h" /* A cross-platform version of <sys/cdefs.h> */ __FBSDID("$FreeBSD$"); diff --git a/usr.sbin/lpr/common_source/request.c b/usr.sbin/lpr/common_source/request.c index 68d8a4d..b650e5c 100644 --- a/usr.sbin/lpr/common_source/request.c +++ b/usr.sbin/lpr/common_source/request.c @@ -29,6 +29,7 @@ static const char copyright[] = "Copyright (C) 1997, Massachusetts Institute of Technology\r\n"; + #include "lp.cdefs.h" /* A cross-platform version of <sys/cdefs.h> */ __FBSDID("$FreeBSD$"); diff --git a/usr.sbin/lpr/common_source/rmjob.c b/usr.sbin/lpr/common_source/rmjob.c index ac854b2..13f7d42 100644 --- a/usr.sbin/lpr/common_source/rmjob.c +++ b/usr.sbin/lpr/common_source/rmjob.c @@ -32,8 +32,11 @@ */ #if 0 +#ifndef lint static char sccsid[] = "@(#)rmjob.c 8.2 (Berkeley) 4/28/95"; +#endif /* not lint */ #endif + #include "lp.cdefs.h" /* A cross-platform version of <sys/cdefs.h> */ __FBSDID("$FreeBSD$"); diff --git a/usr.sbin/lpr/common_source/startdaemon.c b/usr.sbin/lpr/common_source/startdaemon.c index 5e213ae..08c2e6f 100644 --- a/usr.sbin/lpr/common_source/startdaemon.c +++ b/usr.sbin/lpr/common_source/startdaemon.c @@ -32,8 +32,11 @@ */ #if 0 +#ifndef lint static char sccsid[] = "@(#)startdaemon.c 8.2 (Berkeley) 4/17/94"; +#endif /* not lint */ #endif + #include "lp.cdefs.h" /* A cross-platform version of <sys/cdefs.h> */ __FBSDID("$FreeBSD$"); |