From owner-svn-src-all@FreeBSD.ORG Sat Dec 8 19:42:16 2012 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8CCCB34B; Sat, 8 Dec 2012 19:42:16 +0000 (UTC) (envelope-from jilles@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 713FC8FC0C; Sat, 8 Dec 2012 19:42:16 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qB8JgGe2003339; Sat, 8 Dec 2012 19:42:16 GMT (envelope-from jilles@svn.freebsd.org) Received: (from jilles@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qB8JgG5R003338; Sat, 8 Dec 2012 19:42:16 GMT (envelope-from jilles@svn.freebsd.org) Message-Id: <201212081942.qB8JgG5R003338@svn.freebsd.org> From: Jilles Tjoelker Date: Sat, 8 Dec 2012 19:42:16 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r244038 - head/tools/regression/lib/libc/stdio X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.14 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: Sat, 08 Dec 2012 19:42:16 -0000 Author: jilles Date: Sat Dec 8 19:42:15 2012 New Revision: 244038 URL: http://svnweb.freebsd.org/changeset/base/244038 Log: libc: Add a missing header to a test program. Usage of dup(), mkstemp() and unlink() needs . Modified: head/tools/regression/lib/libc/stdio/test-perror.c Modified: head/tools/regression/lib/libc/stdio/test-perror.c ============================================================================== --- head/tools/regression/lib/libc/stdio/test-perror.c Sat Dec 8 18:41:16 2012 (r244037) +++ head/tools/regression/lib/libc/stdio/test-perror.c Sat Dec 8 19:42:15 2012 (r244038) @@ -40,6 +40,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include static void cleanup(void); static char tmpfil[PATH_MAX];