RCS id police.

This commit is contained in:
thorpej 1996-07-12 00:46:18 +00:00
parent cf0afdf885
commit 3aab4f7d4f
10 changed files with 49 additions and 16 deletions

View File

@ -1,5 +1,5 @@
# $NetBSD: Makefile,v 1.5 1996/07/12 00:46:18 thorpej Exp $
# from: @(#)Makefile 5.11 (Berkeley) 3/12/91
# $Id: Makefile,v 1.4 1996/07/12 00:38:50 thorpej Exp $
PROG= rdist
CFLAGS+=-I${.CURDIR}

View File

@ -1,3 +1,5 @@
/* $NetBSD: defs.h,v 1.7 1996/07/12 00:46:20 thorpej Exp $ */
/*
* Copyright (c) 1983, 1993
* The Regents of the University of California. All rights reserved.
@ -31,7 +33,6 @@
* SUCH DAMAGE.
*
* from: @(#)defs.h 8.1 (Berkeley) 6/9/93
* $Id: defs.h,v 1.6 1996/07/12 00:38:51 thorpej Exp $
*/
#include <sys/param.h>

View File

@ -1,3 +1,5 @@
/* $NetBSD: docmd.c,v 1.9 1996/07/12 00:46:21 thorpej Exp $ */
/*
* Copyright (c) 1983, 1993
* The Regents of the University of California. All rights reserved.
@ -32,8 +34,11 @@
*/
#ifndef lint
/* from: static char sccsid[] = "@(#)docmd.c 8.1 (Berkeley) 6/9/93"; */
static char *rcsid = "$Id: docmd.c,v 1.8 1996/07/12 00:38:53 thorpej Exp $";
#if 0
static char sccsid[] = "@(#)docmd.c 8.1 (Berkeley) 6/9/93";
#else
static char *rcsid = "$NetBSD: docmd.c,v 1.9 1996/07/12 00:46:21 thorpej Exp $";
#endif
#endif /* not lint */
#include "defs.h"

View File

@ -1,3 +1,5 @@
/* $NetBSD: expand.c,v 1.7 1996/07/12 00:46:22 thorpej Exp $ */
/*
* Copyright (c) 1983, 1993
* The Regents of the University of California. All rights reserved.
@ -32,8 +34,11 @@
*/
#ifndef lint
/* from: static char sccsid[] = "@(#)expand.c 8.1 (Berkeley) 6/9/93"; */
static char *rcsid = "$Id: expand.c,v 1.6 1996/07/12 00:06:34 thorpej Exp $";
#if 0
static char sccsid[] = "@(#)expand.c 8.1 (Berkeley) 6/9/93";
#else
static char *rcsid = "$NetBSD: expand.c,v 1.7 1996/07/12 00:46:22 thorpej Exp $";
#endif
#endif /* not lint */
#include "defs.h"

View File

@ -1,4 +1,6 @@
%{
/* $NetBSD: gram.y,v 1.5 1996/07/12 00:46:24 thorpej Exp $ */
/*
* Copyright (c) 1983, 1993
* The Regents of the University of California. All rights reserved.
@ -33,8 +35,11 @@
*/
#ifndef lint
/* from: static char sccsid[] = "@(#)gram.y 8.1 (Berkeley) 6/9/93"; */
static char *rcsid = "$Id: gram.y,v 1.4 1996/07/12 00:38:54 thorpej Exp $";
#if 0
static char sccsid[] = "@(#)gram.y 8.1 (Berkeley) 6/9/93";
#else
static char *rcsid = "$NetBSD: gram.y,v 1.5 1996/07/12 00:46:24 thorpej Exp $";
#endif
#endif /* not lint */
#include "defs.h"

View File

@ -1,3 +1,5 @@
/* $NetBSD: lookup.c,v 1.5 1996/07/12 00:46:25 thorpej Exp $ */
/*
* Copyright (c) 1983, 1993
* The Regents of the University of California. All rights reserved.
@ -32,8 +34,11 @@
*/
#ifndef lint
/* from: static char sccsid[] = "@(#)lookup.c 8.1 (Berkeley) 6/9/93"; */
static char *rcsid = "$Id: lookup.c,v 1.4 1996/07/12 00:06:36 thorpej Exp $";
#if 0
static char sccsid[] = "@(#)lookup.c 8.1 (Berkeley) 6/9/93";
#else
static char *rcsid = "$NetBSD: lookup.c,v 1.5 1996/07/12 00:46:25 thorpej Exp $";
#endif
#endif /* not lint */
#include "defs.h"

View File

@ -1,3 +1,5 @@
/* $NetBSD: main.c,v 1.5 1996/07/12 00:46:26 thorpej Exp $ */
/*
* Copyright (c) 1983, 1993
* The Regents of the University of California. All rights reserved.
@ -38,8 +40,11 @@ static char copyright[] =
#endif /* not lint */
#ifndef lint
/* from: static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 6/9/93"; */
static char *rcsid = "$Id: main.c,v 1.4 1994/03/07 05:05:35 cgd Exp $";
#if 0
static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 6/9/93";
#else
static char *rcsid = "$NetBSD: main.c,v 1.5 1996/07/12 00:46:26 thorpej Exp $";
#endif
#endif /* not lint */
#include "defs.h"

View File

@ -1,3 +1,5 @@
/* $NetBSD: pathnames.h,v 1.4 1996/07/12 00:46:28 thorpej Exp $ */
/*
* Copyright (c) 1989, 1993
* The Regents of the University of California. All rights reserved.
@ -31,7 +33,6 @@
* SUCH DAMAGE.
*
* from: @(#)pathnames.h 8.1 (Berkeley) 6/9/93
* $Id: pathnames.h,v 1.3 1994/03/07 05:05:39 cgd Exp $
*/
#include <paths.h>

View File

@ -1,3 +1,5 @@
.\" $NetBSD: rdist.1,v 1.7 1996/07/12 00:46:29 thorpej Exp $
.\"
.\" Copyright (c) 1985, 1990, 1993
.\" The Regents of the University of California. All rights reserved.
.\"
@ -30,7 +32,6 @@
.\" SUCH DAMAGE.
.\"
.\" from: @(#)rdist.1 8.2 (Berkeley) 12/30/93
.\" $Id: rdist.1,v 1.6 1994/03/07 05:07:19 cgd Exp $
.\"
.Dd December 30, 1993
.Dt RDIST 1

View File

@ -1,3 +1,5 @@
/* $NetBSD: server.c,v 1.11 1996/07/12 00:46:31 thorpej Exp $ */
/*
* Copyright (c) 1983, 1993
* The Regents of the University of California. All rights reserved.
@ -32,8 +34,11 @@
*/
#ifndef lint
/* from: static char sccsid[] = "@(#)server.c 8.1 (Berkeley) 6/9/93"; */
static char *rcsid = "$Id: server.c,v 1.10 1996/07/12 00:38:55 thorpej Exp $";
#if 0
static char sccsid[] = "@(#)server.c 8.1 (Berkeley) 6/9/93";
#else
static char *rcsid = "$NetBSD: server.c,v 1.11 1996/07/12 00:46:31 thorpej Exp $";
#endif
#endif /* not lint */
#include <sys/wait.h>