]> git.cameronkatri.com Git - bsdgames-darwin.git/commitdiff
remove redundant decls
authorchristos <christos@NetBSD.org>
Mon, 5 Feb 2001 00:42:14 +0000 (00:42 +0000)
committerchristos <christos@NetBSD.org>
Mon, 5 Feb 2001 00:42:14 +0000 (00:42 +0000)
hunt/huntd/faketalk.c
hunt/huntd/get_names.c

index f613b3c341c66023a3027f7901d27784b710e700..132a523f2cf6db9c4fffbf170fe985029bef2b7c 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: faketalk.c,v 1.5 2001/01/09 23:49:54 lukem Exp $       */
+/*     $NetBSD: faketalk.c,v 1.6 2001/02/05 00:42:14 christos Exp $    */
 /*
  *  Hunt
  *  Copyright (c) 1985 Conrad C. Huang, Gregory S. Couch, Kenneth C.R.C. Arnold
@@ -11,7 +11,7 @@
 
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: faketalk.c,v 1.5 2001/01/09 23:49:54 lukem Exp $");
+__RCSID("$NetBSD: faketalk.c,v 1.6 2001/02/05 00:42:14 christos Exp $");
 #endif /* not lint */
 
 #include "bsd.h"
@@ -43,10 +43,10 @@ __RCSID("$NetBSD: faketalk.c,v 1.5 2001/01/09 23:49:54 lukem Exp $");
 
 extern char            *my_machine_name;
 extern char            *First_arg, *Last_arg;
+extern char            **environ;
 
 static void    do_announce __P((char *));
 SIGNAL_TYPE    exorcise __P((int));
-
 /*
  *     exorcise - disspell zombies
  */
@@ -72,7 +72,6 @@ faketalk()
        int                     service;        /* socket of service */
        struct  sockaddr_in     des;            /* address of destination */
        char                    *a, *b;
-       extern  char            **environ;
 
        (void) signal(SIGCHLD, exorcise);
 
@@ -189,7 +188,6 @@ do_announce(s)
        char    *s;
 {
        CTL_RESPONSE                    response;
-       extern  struct  sockaddr_in     ctl_addr;
 
        get_remote_name(s);     /* setup his_machine_addr, msg.r_name */
 
index 2ca529a893c1e3e17ad43ebcf2375eea9bec813d..8f19b9d577f7d39d889cce4caba68a01b1c15e40 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: get_names.c,v 1.5 2001/01/09 23:49:54 lukem Exp $      */
+/*     $NetBSD: get_names.c,v 1.6 2001/02/05 00:42:15 christos Exp $   */
 /*
  * Copyright (c) 1983 Regents of the University of California.
  * All rights reserved.  The Berkeley software License Agreement
@@ -7,7 +7,7 @@
 
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: get_names.c,v 1.5 2001/01/09 23:49:54 lukem Exp $");
+__RCSID("$NetBSD: get_names.c,v 1.6 2001/02/05 00:42:15 christos Exp $");
 #endif /* not lint */
 
 #include "bsd.h"
@@ -23,8 +23,6 @@ __RCSID("$NetBSD: get_names.c,v 1.5 2001/01/09 23:49:54 lukem Exp $");
 # include      "hunt.h"
 # include      "talk_ctl.h"
 
-extern CTL_MSG msg;
-
 static char    hostname[MAXHOSTNAMELEN + 1];
 char           *my_machine_name;