The file pt_tcplisten.c lacks the $FreeBSD$ keyword. Use the opportunity to

change all files to __FBSDID.

Approved by:	das (mentor)
This commit is contained in:
Stefan Farfeleder 2004-05-30 08:54:27 +00:00
parent fe1737b6f3
commit 1eff217426
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=129862
8 changed files with 18 additions and 28 deletions

View File

@ -37,10 +37,8 @@
* @(#)activate.c 8.3 (Berkeley) 4/28/95
*/
#ifndef lint
static const char rcsid[] =
"$FreeBSD$";
#endif /* not lint */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <errno.h>
#include <string.h>

View File

@ -37,10 +37,8 @@
* @(#)conf.c 8.2 (Berkeley) 3/27/94
*/
#ifndef lint
static const char rcsid[] =
"$FreeBSD$";
#endif /* not lint */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <errno.h>
#include <limits.h>

View File

@ -40,13 +40,12 @@ char copyright[] =
The Regents of the University of California. All rights reserved.\n";
#endif /* not lint */
#ifndef lint
#if 0
static char sccsid[] = "@(#)mount_portal.c 8.6 (Berkeley) 4/26/95";
#endif
static const char rcsid[] =
"$FreeBSD$";
#endif /* not lint */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/param.h>
#include <sys/wait.h>

View File

@ -37,10 +37,8 @@
* @(#)pt_conf.c 8.1 (Berkeley) 6/5/93
*/
#ifndef lint
static const char rcsid[] =
"$FreeBSD$";
#endif /* not lint */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/types.h>
#include <sys/param.h>

View File

@ -37,10 +37,8 @@
* @(#)pt_exec.c 8.1 (Berkeley) 6/5/93
*/
#ifndef lint
static const char rcsid[] =
"$FreeBSD$";
#endif /* not lint */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <errno.h>
#include <sys/types.h>

View File

@ -37,10 +37,8 @@
* @(#)pt_file.c 8.3 (Berkeley) 7/3/94
*/
#ifndef lint
static const char rcsid[] =
"$FreeBSD$";
#endif /* not lint */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <errno.h>
#include <fcntl.h>

View File

@ -37,10 +37,8 @@
* @(#)pt_tcp.c 8.5 (Berkeley) 4/28/95
*/
#ifndef lint
static const char rcsid[] =
"$FreeBSD$";
#endif /* not lint */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <errno.h>
#include <stdlib.h>

View File

@ -41,6 +41,9 @@
* pt_tcp.c,v 1.1.1.1 1994/05/26 06:34:34 rgrimes Exp
*/
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>