From c6f8831e8eb6cbbca16ff76fcfef1725228a9ece Mon Sep 17 00:00:00 2001 From: asmodai Date: Fri, 20 Apr 2001 09:33:57 +0000 Subject: Add $FreeBSD$ to the files which didn't have it yet. Fix the .c files, so that the $FreeBSD$ is contained within the rcsid. [bde] --- usr.bin/xlint/lint1/cgram.y | 2 +- usr.bin/xlint/lint1/decl.c | 4 +--- usr.bin/xlint/lint1/err.c | 4 +--- usr.bin/xlint/lint1/func.c | 2 +- usr.bin/xlint/lint1/mem1.c | 2 +- usr.bin/xlint/lint1/param.h | 2 ++ usr.bin/xlint/lint1/scan.l | 2 +- usr.bin/xlint/lint1/tree.c | 4 +--- usr.bin/xlint/lint2/mem2.c | 2 +- usr.bin/xlint/lint2/read.c | 2 +- usr.bin/xlint/llib/llib-lstdc | 2 ++ 11 files changed, 13 insertions(+), 15 deletions(-) diff --git a/usr.bin/xlint/lint1/cgram.y b/usr.bin/xlint/lint1/cgram.y index 6be2089..119a782 100644 --- a/usr.bin/xlint/lint1/cgram.y +++ b/usr.bin/xlint/lint1/cgram.y @@ -33,7 +33,7 @@ */ #ifndef lint -static char rcsid[] = "$NetBSD: cgram.y,v 1.8 1995/10/02 17:31:35 jpo Exp $"; +static char rcsid[] = "$FreeBSD$"; #endif #include diff --git a/usr.bin/xlint/lint1/decl.c b/usr.bin/xlint/lint1/decl.c index 9b69312..7a800fd 100644 --- a/usr.bin/xlint/lint1/decl.c +++ b/usr.bin/xlint/lint1/decl.c @@ -29,12 +29,10 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - * $FreeBSD$ */ #ifndef lint -static char rcsid[] = "$NetBSD: decl.c,v 1.11 1995/10/02 17:34:16 jpo Exp $"; +static char rcsid[] = "$FreeBSD$"; #endif #include diff --git a/usr.bin/xlint/lint1/err.c b/usr.bin/xlint/lint1/err.c index 4e34ba8..2bff0f5 100644 --- a/usr.bin/xlint/lint1/err.c +++ b/usr.bin/xlint/lint1/err.c @@ -29,12 +29,10 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - * $FreeBSD$ */ #ifndef lint -static char rcsid[] = "$NetBSD: err.c,v 1.8 1995/10/02 17:37:00 jpo Exp $"; +static char rcsid[] = "$FreeBSD$"; #endif /* number of errors found */ diff --git a/usr.bin/xlint/lint1/func.c b/usr.bin/xlint/lint1/func.c index 5d3a172..e80bc8f 100644 --- a/usr.bin/xlint/lint1/func.c +++ b/usr.bin/xlint/lint1/func.c @@ -32,7 +32,7 @@ */ #ifndef lint -static char rcsid[] = "$NetBSD: func.c,v 1.7 1995/10/02 17:31:40 jpo Exp $"; +static char rcsid[] = "$FreeBSD$"; #endif #include diff --git a/usr.bin/xlint/lint1/mem1.c b/usr.bin/xlint/lint1/mem1.c index f3bf3c6..e6a2014 100644 --- a/usr.bin/xlint/lint1/mem1.c +++ b/usr.bin/xlint/lint1/mem1.c @@ -32,7 +32,7 @@ */ #ifndef lint -static char rcsid[] = "$NetBSD: mem1.c,v 1.2 1995/07/03 21:24:25 cgd Exp $"; +static char rcsid[] = "$FreeBSD$"; #endif #include diff --git a/usr.bin/xlint/lint1/param.h b/usr.bin/xlint/lint1/param.h index 17e266e..9faa574 100644 --- a/usr.bin/xlint/lint1/param.h +++ b/usr.bin/xlint/lint1/param.h @@ -29,6 +29,8 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * $FreeBSD$ */ /* diff --git a/usr.bin/xlint/lint1/scan.l b/usr.bin/xlint/lint1/scan.l index c76ebcf..2de98d5 100644 --- a/usr.bin/xlint/lint1/scan.l +++ b/usr.bin/xlint/lint1/scan.l @@ -33,7 +33,7 @@ */ #ifndef lint -static char rcsid[] = "$NetBSD: scan.l,v 1.8 1995/10/23 13:38:51 jpo Exp $"; +static char rcsid[] = "$FreeBSD$"; #endif #include diff --git a/usr.bin/xlint/lint1/tree.c b/usr.bin/xlint/lint1/tree.c index 0d7a7fc..ae6103f 100644 --- a/usr.bin/xlint/lint1/tree.c +++ b/usr.bin/xlint/lint1/tree.c @@ -29,12 +29,10 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - * $FreeBSD$ */ #ifndef lint -static char rcsid[] = "$NetBSD: tree.c,v 1.12 1995/10/02 17:37:57 jpo Exp $"; +static char rcsid[] = "$FreeBSD$"; #endif #include diff --git a/usr.bin/xlint/lint2/mem2.c b/usr.bin/xlint/lint2/mem2.c index ed97c6f..ac1137f 100644 --- a/usr.bin/xlint/lint2/mem2.c +++ b/usr.bin/xlint/lint2/mem2.c @@ -32,7 +32,7 @@ */ #ifndef lint -static char rcsid[] = "$NetBSD: mem2.c,v 1.3 1995/10/02 17:27:11 jpo Exp $"; +static char rcsid[] = "$FreeBSD$"; #endif #include diff --git a/usr.bin/xlint/lint2/read.c b/usr.bin/xlint/lint2/read.c index 6498a5c..99e8aae 100644 --- a/usr.bin/xlint/lint2/read.c +++ b/usr.bin/xlint/lint2/read.c @@ -32,7 +32,7 @@ */ #ifndef lint -static char rcsid[] = "$NetBSD: read.c,v 1.2 1995/07/03 21:24:59 cgd Exp $"; +static char rcsid[] = "$FreeBSD$"; #endif #include diff --git a/usr.bin/xlint/llib/llib-lstdc b/usr.bin/xlint/llib/llib-lstdc index f2b33da..5ad0ec3 100644 --- a/usr.bin/xlint/llib/llib-lstdc +++ b/usr.bin/xlint/llib/llib-lstdc @@ -29,6 +29,8 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * $FreeBSD$ */ /* LINTLIBRARY */ -- cgit v1.1