New-style RCS ids.
This commit is contained in:
parent
d51b06e19a
commit
484fdbba2d
|
@ -1,5 +1,5 @@
|
|||
# $NetBSD: Makefile,v 1.5 1996/01/11 06:33:32 thorpej Exp $
|
||||
# from: @(#)Makefile 8.1 (Berkeley) 6/6/93
|
||||
# $Id: Makefile,v 1.4 1994/12/25 12:22:03 pk Exp $
|
||||
|
||||
PROG= pstat
|
||||
MAN= pstat.8
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
.\" $NetBSD: pstat.8,v 1.8 1996/01/11 06:33:35 thorpej Exp $
|
||||
.\"
|
||||
.\" Copyright (c) 1980, 1991, 1993, 1994
|
||||
.\" The Regents of the University of California. All rights reserved.
|
||||
.\"
|
||||
|
@ -30,7 +32,6 @@
|
|||
.\" SUCH DAMAGE.
|
||||
.\"
|
||||
.\" from: @(#)pstat.8 8.4 (Berkeley) 4/19/94
|
||||
.\" $Id: pstat.8,v 1.7 1996/01/06 23:25:51 pk Exp $
|
||||
.\"
|
||||
.Dd April 19, 1994
|
||||
.Dt PSTAT 8
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
/* $NetBSD: pstat.c,v 1.16 1996/01/11 06:33:36 thorpej Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1980, 1991, 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[] = "@(#)pstat.c 8.9 (Berkeley) 2/16/94"; */
|
||||
static char *rcsid = "$Id: pstat.c,v 1.15 1995/11/28 19:43:40 jtc Exp $";
|
||||
#if 0
|
||||
from: static char sccsid[] = "@(#)pstat.c 8.9 (Berkeley) 2/16/94";
|
||||
#else
|
||||
static char *rcsid = "$NetBSD: pstat.c,v 1.16 1996/01/11 06:33:36 thorpej Exp $";
|
||||
#endif
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/param.h>
|
||||
|
|
Loading…
Reference in New Issue