Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!uunet!husc6!rutgers!ames!lll-tis!elxsi!marduk!gww From: gww@marduk.UUCP (Gary Winiger) Newsgroups: comp.bugs.4bsd Subject: ucb/talk won't link +Fix Message-ID: <508@elxsi.UUCP> Date: Fri, 4-Sep-87 17:54:53 EDT Article-I.D.: elxsi.508 Posted: Fri Sep 4 17:54:53 1987 Date-Received: Sat, 5-Sep-87 20:51:44 EDT Sender: nobody@elxsi.UUCP Reply-To: gww@marduk.UUCP (Gary Winiger) Organization: ELXSI Super Computers, San Jose Lines: 56 Subject: ucb/talk won't link +Fix Index: ucb/talk 4.3BSD +Fix Description: get_names.o has unsatisfied externals of hton? because of a missing include file. Repeat-By: Attempt to build talk on a standard distributed system. Fix: Add the include file to get_names.c The attached code corrects this problem at Elxsi. Gary.. {ucbvax!sun,lll-lcc!lll-tis,amdahl!altos86,bridge2}!elxsi!gww --------- cut --------- snip --------- :.,$w diff ------------- *** /tmp/,RCSt1001929 Mon Dec 29 16:19:43 1986 --- get_names.c Mon Dec 29 16:19:23 1986 *************** *** 1,5 **** --- 1,8 ---- /* * $Log: get_names.c,v $ + * Revision 1.2 86/12/29 16:19:10 gww + * Add missing include. + * * Revision 1.1 86/12/29 16:05:12 gww * Initial revision * *************** *** 11,17 **** */ #ifndef lint ! static char *ERcsId = "$Header: get_names.c,v 1.1 86/12/29 16:05:12 gww Exp $ ENIX BSD"; static char sccsid[] = "@(#)get_names.c 5.2 (Berkeley) 3/13/86"; #endif not lint --- 14,20 ---- */ #ifndef lint ! static char *ERcsId = "$Header: get_names.c,v 1.2 86/12/29 16:19:10 gww Exp $ ENIX BSD"; static char sccsid[] = "@(#)get_names.c 5.2 (Berkeley) 3/13/86"; #endif not lint *************** *** 18,23 **** --- 21,27 ---- #include "talk.h" #include #include + #include char *getlogin(); char *ttyname();