Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/games/hunt/huntd Remove empty header file.



details:   https://anonhg.NetBSD.org/src/rev/236f37aef479
branches:  trunk
changeset: 328235:236f37aef479
user:      dholland <dholland%NetBSD.org@localhost>
date:      Sat Mar 29 20:16:09 2014 +0000

description:
Remove empty header file.

diffstat:

 games/hunt/huntd/bsd.h          |  32 --------------------------------
 games/hunt/huntd/ctl.c          |   6 ++----
 games/hunt/huntd/ctl_transact.c |   6 ++----
 games/hunt/huntd/faketalk.c     |   5 ++---
 games/hunt/huntd/get_names.c    |   6 ++----
 games/hunt/huntd/hunt.h         |   4 +---
 6 files changed, 9 insertions(+), 50 deletions(-)

diffs (151 lines):

diff -r cf3f82e54167 -r 236f37aef479 games/hunt/huntd/bsd.h
--- a/games/hunt/huntd/bsd.h    Sat Mar 29 20:12:12 2014 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,32 +0,0 @@
-/*     $NetBSD: bsd.h,v 1.7 2009/07/04 07:51:35 dholland Exp $ */
-
-/*
- * Copyright (c) 1983-2003, Regents of the University of California.
- * All rights reserved.
- * 
- * Redistribution and use in source and binary forms, with or without 
- * modification, are permitted provided that the following conditions are 
- * met:
- * 
- * + Redistributions of source code must retain the above copyright 
- *   notice, this list of conditions and the following disclaimer.
- * + Redistributions in binary form must reproduce the above copyright 
- *   notice, this list of conditions and the following disclaimer in the 
- *   documentation and/or other materials provided with the distribution.
- * + Neither the name of the University of California, San Francisco nor 
- *   the names of its contributors may be used to endorse or promote 
- *   products derived from this software without specific prior written 
- *   permission.
- * 
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS 
- * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 
- * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A 
- * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
diff -r cf3f82e54167 -r 236f37aef479 games/hunt/huntd/ctl.c
--- a/games/hunt/huntd/ctl.c    Sat Mar 29 20:12:12 2014 +0000
+++ b/games/hunt/huntd/ctl.c    Sat Mar 29 20:16:09 2014 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ctl.c,v 1.6 2014/03/29 20:10:10 dholland Exp $ */
+/*     $NetBSD: ctl.c,v 1.7 2014/03/29 20:16:09 dholland Exp $ */
 /*
  * Copyright (c) 1983-2003, Regents of the University of California.
  * All rights reserved.
@@ -30,8 +30,6 @@
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#include "bsd.h"
-
 #if defined(TALK_43) || defined(TALK_42) 
 
 #include <sys/cdefs.h>
@@ -39,7 +37,7 @@
 #if 0
 static char sccsid[] = "@(#)ctl.c      5.2 (Berkeley) 3/13/86";
 #else
-__RCSID("$NetBSD: ctl.c,v 1.6 2014/03/29 20:10:10 dholland Exp $");
+__RCSID("$NetBSD: ctl.c,v 1.7 2014/03/29 20:16:09 dholland Exp $");
 #endif
 #endif /* not lint */
 
diff -r cf3f82e54167 -r 236f37aef479 games/hunt/huntd/ctl_transact.c
--- a/games/hunt/huntd/ctl_transact.c   Sat Mar 29 20:12:12 2014 +0000
+++ b/games/hunt/huntd/ctl_transact.c   Sat Mar 29 20:16:09 2014 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ctl_transact.c,v 1.10 2014/03/29 20:10:10 dholland Exp $       */
+/*     $NetBSD: ctl_transact.c,v 1.11 2014/03/29 20:16:09 dholland Exp $       */
 /*
  * Copyright (c) 1983-2003, Regents of the University of California.
  * All rights reserved.
@@ -30,8 +30,6 @@
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#include "bsd.h"
-
 #if defined(TALK_43) || defined(TALK_42)
 
 #include <sys/cdefs.h>
@@ -39,7 +37,7 @@
 #if 0
 static char sccsid[] = "@(#)ctl_transact.c     5.2 (Berkeley) 3/13/86";
 #else
-__RCSID("$NetBSD: ctl_transact.c,v 1.10 2014/03/29 20:10:10 dholland Exp $");
+__RCSID("$NetBSD: ctl_transact.c,v 1.11 2014/03/29 20:16:09 dholland Exp $");
 #endif
 #endif /* not lint */
 
diff -r cf3f82e54167 -r 236f37aef479 games/hunt/huntd/faketalk.c
--- a/games/hunt/huntd/faketalk.c       Sat Mar 29 20:12:12 2014 +0000
+++ b/games/hunt/huntd/faketalk.c       Sat Mar 29 20:16:09 2014 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: faketalk.c,v 1.22 2014/03/29 20:12:12 dholland Exp $   */
+/*     $NetBSD: faketalk.c,v 1.23 2014/03/29 20:16:09 dholland Exp $   */
 /*
  * Copyright (c) 1983-2003, Regents of the University of California.
  * All rights reserved.
@@ -32,10 +32,9 @@
 
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: faketalk.c,v 1.22 2014/03/29 20:12:12 dholland Exp $");
+__RCSID("$NetBSD: faketalk.c,v 1.23 2014/03/29 20:16:09 dholland Exp $");
 #endif /* not lint */
 
-#include "bsd.h"
 #include "hunt.h"
 
 #if defined(TALK_43) || defined(TALK_42)
diff -r cf3f82e54167 -r 236f37aef479 games/hunt/huntd/get_names.c
--- a/games/hunt/huntd/get_names.c      Sat Mar 29 20:12:12 2014 +0000
+++ b/games/hunt/huntd/get_names.c      Sat Mar 29 20:16:09 2014 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: get_names.c,v 1.15 2014/03/29 20:10:10 dholland Exp $  */
+/*     $NetBSD: get_names.c,v 1.16 2014/03/29 20:16:09 dholland Exp $  */
 /*
  * Copyright (c) 1983-2003, Regents of the University of California.
  * All rights reserved.
@@ -32,11 +32,9 @@
 
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: get_names.c,v 1.15 2014/03/29 20:10:10 dholland Exp $");
+__RCSID("$NetBSD: get_names.c,v 1.16 2014/03/29 20:16:09 dholland Exp $");
 #endif /* not lint */
 
-#include "bsd.h"
-
 #if defined(TALK_43) || defined(TALK_42)
 
 #include <sys/param.h>
diff -r cf3f82e54167 -r 236f37aef479 games/hunt/huntd/hunt.h
--- a/games/hunt/huntd/hunt.h   Sat Mar 29 20:12:12 2014 +0000
+++ b/games/hunt/huntd/hunt.h   Sat Mar 29 20:16:09 2014 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: hunt.h,v 1.21 2014/03/29 20:10:10 dholland Exp $       */
+/*     $NetBSD: hunt.h,v 1.22 2014/03/29 20:16:09 dholland Exp $       */
 
 /*
  * Copyright (c) 1983-2003, Regents of the University of California.
@@ -31,8 +31,6 @@
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#include "bsd.h"
-
 #include <stdbool.h>
 #include <stdio.h>
 #include <string.h>



Home | Main Index | Thread Index | Old Index