__RCSID()/__COPYRIGHT()/prototype police.

This commit is contained in:
thorpej 1997-07-20 06:07:03 +00:00
parent 5d35d16842
commit ec35801f12
1 changed files with 7 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: echo.c,v 1.6 1995/03/21 09:04:27 cgd Exp $ */
/* $NetBSD: echo.c,v 1.7 1997/07/20 06:07:03 thorpej Exp $ */
/*
* Copyright (c) 1989, 1993
@ -33,17 +33,18 @@
* SUCH DAMAGE.
*/
#include <sys/cdefs.h>
#ifndef lint
static char copyright[] =
__COPYRIGHT(
"@(#) Copyright (c) 1989, 1993\n\
The Regents of the University of California. All rights reserved.\n";
The Regents of the University of California. All rights reserved.\n");
#endif /* not lint */
#ifndef lint
#if 0
static char sccsid[] = "@(#)echo.c 8.1 (Berkeley) 5/31/93";
#else
static char rcsid[] = "$NetBSD: echo.c,v 1.6 1995/03/21 09:04:27 cgd Exp $";
__RCSID("$NetBSD: echo.c,v 1.7 1997/07/20 06:07:03 thorpej Exp $");
#endif
#endif /* not lint */
@ -51,6 +52,8 @@ static char rcsid[] = "$NetBSD: echo.c,v 1.6 1995/03/21 09:04:27 cgd Exp $";
#include <stdlib.h>
#include <string.h>
int main __P((int, char *[]));
int
main(argc, argv)
int argc;