Protect the copyright comments from reformatting by

indent and make this compile -Wall clean like the
Makefile suggests that it should. :)

Pointed out by:	Bruce Evans <bde@zeta.org.au>
This commit is contained in:
Steve Price 1997-08-13 20:42:18 +00:00
parent 3d0a7bc3b8
commit 673b794638
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=28179
5 changed files with 28 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/*
/*-
* Copyright (c) 1988, 1993
* The Regents of the University of California. All rights reserved.
*
@ -32,7 +32,12 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
#if 0
static char sccsid[] = "@(#)login.c 8.1 (Berkeley) 6/4/93";
#else
static const char rcsid[] =
"$Id$";
#endif
#endif /* LIBC_SCCS and not lint */
#include <sys/types.h>

View File

@ -32,7 +32,12 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
#if 0
static char sccsid[] = "@(#)login_tty.c 8.1 (Berkeley) 6/4/93";
#else
static const char rcsid[] =
"$Id$";
#endif
#endif /* LIBC_SCCS and not lint */
#include <sys/param.h>

View File

@ -1,4 +1,4 @@
/*
/*-
* Copyright (c) 1988, 1993
* The Regents of the University of California. All rights reserved.
*
@ -32,7 +32,12 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
#if 0
static char sccsid[] = "@(#)logout.c 8.1 (Berkeley) 6/4/93";
#else
static const char rcsid[] =
"$Id$";
#endif
#endif /* LIBC_SCCS and not lint */
#include <sys/types.h>

View File

@ -1,4 +1,4 @@
/*
/*-
* Copyright (c) 1988, 1993
* The Regents of the University of California. All rights reserved.
*
@ -32,7 +32,12 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
#if 0
static char sccsid[] = "@(#)logwtmp.c 8.1 (Berkeley) 6/4/93";
#else
static const char rcsid[] =
"$Id$";
#endif
#endif /* LIBC_SCCS and not lint */
#include <sys/types.h>

View File

@ -32,7 +32,12 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
#if 0
static char sccsid[] = "@(#)pty.c 8.3 (Berkeley) 5/16/94";
#else
static const char rcsid[] =
"$Id$";
#endif
#endif /* LIBC_SCCS and not lint */
#include <sys/types.h>