From owner-cvs-src-old@FreeBSD.ORG Mon Aug 16 12:19:59 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A708F1065701 for ; Mon, 16 Aug 2010 12:19:59 +0000 (UTC) (envelope-from ed@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7AEB18FC22 for ; Mon, 16 Aug 2010 12:19:59 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o7GCJxmc016804 for ; Mon, 16 Aug 2010 12:19:59 GMT (envelope-from ed@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o7GCJxko016803 for cvs-src-old@freebsd.org; Mon, 16 Aug 2010 12:19:59 GMT (envelope-from ed@repoman.freebsd.org) Message-Id: <201008161219.o7GCJxko016803@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to ed@repoman.freebsd.org using -f From: Ed Schouten Date: Mon, 16 Aug 2010 12:19:36 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/script script.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2010 12:19:59 -0000 ed 2010-08-16 12:19:36 UTC FreeBSD src repository Modified files: usr.bin/script script.c Log: SVN rev 211394 on 2010-08-16 12:19:36Z by ed Mark functions and variables as static. All these functions and variables are local to this compilation unit, so there is no reason why we shouldn't mark them static. This slightly reduces the binary size. Revision Changes Path 1.29 +16 -17 src/usr.bin/script/script.c