From owner-svn-src-projects@freebsd.org Sat Jan 14 07:46:04 2017 Return-Path: Delivered-To: svn-src-projects@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C2589CAFBF4 for ; Sat, 14 Jan 2017 07:46:04 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 91E501702; Sat, 14 Jan 2017 07:46:04 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v0E7k3UC033222; Sat, 14 Jan 2017 07:46:03 GMT (envelope-from ngie@FreeBSD.org) Received: (from ngie@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0E7k3i8033221; Sat, 14 Jan 2017 07:46:03 GMT (envelope-from ngie@FreeBSD.org) Message-Id: <201701140746.v0E7k3i8033221@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ngie set sender to ngie@FreeBSD.org using -f From: Ngie Cooper Date: Sat, 14 Jan 2017 07:46:03 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r312132 - projects/netbsd-tests-upstream-01-2017/lib/libnetbsd X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Jan 2017 07:46:04 -0000 Author: ngie Date: Sat Jan 14 07:46:03 2017 New Revision: 312132 URL: https://svnweb.freebsd.org/changeset/base/312132 Log: Add stdio.h #include for fparseln fparseln on FreeBSD requires stdio.h, then libutil.h, whereas NetBSD only requires util.h Modified: projects/netbsd-tests-upstream-01-2017/lib/libnetbsd/util.h Modified: projects/netbsd-tests-upstream-01-2017/lib/libnetbsd/util.h ============================================================================== --- projects/netbsd-tests-upstream-01-2017/lib/libnetbsd/util.h Sat Jan 14 07:39:07 2017 (r312131) +++ projects/netbsd-tests-upstream-01-2017/lib/libnetbsd/util.h Sat Jan 14 07:46:03 2017 (r312132) @@ -30,9 +30,10 @@ * SUCH DAMAGE. */ -#ifndef _UTIL_H_ -#define _UTIL_H_ +#ifndef _LIBNETBSD_UTIL_H_ +#define _LIBNETBSD_UTIL_H_ +#include /* for fparseln(3) */ #include char *flags_to_string(u_long flags, const char *def);