From owner-svn-src-all@FreeBSD.ORG Fri Dec 11 23:23:57 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D093A1065670; Fri, 11 Dec 2009 23:23:57 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A3E1F8FC12; Fri, 11 Dec 2009 23:23:57 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id nBBNNvP4023410; Fri, 11 Dec 2009 23:23:57 GMT (envelope-from delphij@svn.freebsd.org) Received: (from delphij@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id nBBNNvXB023400; Fri, 11 Dec 2009 23:23:57 GMT (envelope-from delphij@svn.freebsd.org) Message-Id: <200912112323.nBBNNvXB023400@svn.freebsd.org> From: Xin LI Date: Fri, 11 Dec 2009 23:23:57 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r200418 - head/usr.bin/talk X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Dec 2009 23:23:58 -0000 Author: delphij Date: Fri Dec 11 23:23:57 2009 New Revision: 200418 URL: http://svn.freebsd.org/changeset/base/200418 Log: Move unistd.h includes to individual .c files and remove unnecessary includes. Modified: head/usr.bin/talk/ctl_transact.c head/usr.bin/talk/display.c head/usr.bin/talk/get_addrs.c head/usr.bin/talk/get_iface.c head/usr.bin/talk/get_names.c head/usr.bin/talk/invite.c head/usr.bin/talk/look_up.c head/usr.bin/talk/talk.c head/usr.bin/talk/talk.h Modified: head/usr.bin/talk/ctl_transact.c ============================================================================== --- head/usr.bin/talk/ctl_transact.c Fri Dec 11 23:20:02 2009 (r200417) +++ head/usr.bin/talk/ctl_transact.c Fri Dec 11 23:23:57 2009 (r200418) @@ -42,7 +42,6 @@ static const char sccsid[] = "@(#)ctl_tr #include #include -#include #include "talk.h" #include "talk_ctl.h" Modified: head/usr.bin/talk/display.c ============================================================================== --- head/usr.bin/talk/display.c Fri Dec 11 23:20:02 2009 (r200417) +++ head/usr.bin/talk/display.c Fri Dec 11 23:23:57 2009 (r200418) @@ -44,6 +44,7 @@ static const char sccsid[] = "@(#)displa * displaying of text */ #include +#include #include "talk.h" Modified: head/usr.bin/talk/get_addrs.c ============================================================================== --- head/usr.bin/talk/get_addrs.c Fri Dec 11 23:20:02 2009 (r200417) +++ head/usr.bin/talk/get_addrs.c Fri Dec 11 23:23:57 2009 (r200418) @@ -42,6 +42,7 @@ static const char sccsid[] = "@(#)get_ad #include #include #include +#include #include "talk.h" #include "talk_ctl.h" Modified: head/usr.bin/talk/get_iface.c ============================================================================== --- head/usr.bin/talk/get_iface.c Fri Dec 11 23:20:02 2009 (r200417) +++ head/usr.bin/talk/get_iface.c Fri Dec 11 23:23:57 2009 (r200418) @@ -38,6 +38,7 @@ __FBSDID("$FreeBSD$"); #include #include +#include #include "talk.h" Modified: head/usr.bin/talk/get_names.c ============================================================================== --- head/usr.bin/talk/get_names.c Fri Dec 11 23:20:02 2009 (r200417) +++ head/usr.bin/talk/get_names.c Fri Dec 11 23:23:57 2009 (r200418) @@ -45,6 +45,7 @@ static const char sccsid[] = "@(#)get_na #include #include #include +#include #include "talk.h" Modified: head/usr.bin/talk/invite.c ============================================================================== --- head/usr.bin/talk/invite.c Fri Dec 11 23:20:02 2009 (r200417) +++ head/usr.bin/talk/invite.c Fri Dec 11 23:23:57 2009 (r200418) @@ -47,6 +47,7 @@ static const char sccsid[] = "@(#)invite #include #include #include +#include #include "talk_ctl.h" #include "talk.h" Modified: head/usr.bin/talk/look_up.c ============================================================================== --- head/usr.bin/talk/look_up.c Fri Dec 11 23:20:02 2009 (r200417) +++ head/usr.bin/talk/look_up.c Fri Dec 11 23:23:57 2009 (r200418) @@ -45,6 +45,7 @@ static const char sccsid[] = "@(#)look_u #include #include +#include #include "talk_ctl.h" #include "talk.h" Modified: head/usr.bin/talk/talk.c ============================================================================== --- head/usr.bin/talk/talk.c Fri Dec 11 23:20:02 2009 (r200417) +++ head/usr.bin/talk/talk.c Fri Dec 11 23:23:57 2009 (r200418) @@ -46,6 +46,7 @@ static const char copyright[] = #endif #include +#include #include "talk.h" Modified: head/usr.bin/talk/talk.h ============================================================================== --- head/usr.bin/talk/talk.h Fri Dec 11 23:20:02 2009 (r200417) +++ head/usr.bin/talk/talk.h Fri Dec 11 23:23:57 2009 (r200418) @@ -42,7 +42,6 @@ #include #include #include -#include extern int sockt; extern int curses_initialized;