From owner-svn-src-head@freebsd.org Tue Jul 3 13:53:55 2018 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C76511022440; Tue, 3 Jul 2018 13:53:55 +0000 (UTC) (envelope-from br@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7C40382378; Tue, 3 Jul 2018 13:53:55 +0000 (UTC) (envelope-from br@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5F0081CF69; Tue, 3 Jul 2018 13:53:55 +0000 (UTC) (envelope-from br@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w63DrtwR079943; Tue, 3 Jul 2018 13:53:55 GMT (envelope-from br@FreeBSD.org) Received: (from br@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w63DrsAa079940; Tue, 3 Jul 2018 13:53:54 GMT (envelope-from br@FreeBSD.org) Message-Id: <201807031353.w63DrsAa079940@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: br set sender to br@FreeBSD.org using -f From: Ruslan Bukin Date: Tue, 3 Jul 2018 13:53:54 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r335888 - in head: contrib/blacklist/bin lib/libpjdlog sbin/hastd X-SVN-Group: head X-SVN-Commit-Author: br X-SVN-Commit-Paths: in head: contrib/blacklist/bin lib/libpjdlog sbin/hastd X-SVN-Commit-Revision: 335888 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Jul 2018 13:53:56 -0000 Author: br Date: Tue Jul 3 13:53:54 2018 New Revision: 335888 URL: https://svnweb.freebsd.org/changeset/base/335888 Log: o Ensure va_list is declared by including stdarg.h. o Also move printf.h to go after it since it does require declaration of va_list. This fixes build with latest RISC-V GNU Toolchain with GCC 8.1 Sponsored by: DARPA, AFRL Modified: head/contrib/blacklist/bin/blacklistctl.c head/lib/libpjdlog/pjdlog.c head/sbin/hastd/pjdlog.c Modified: head/contrib/blacklist/bin/blacklistctl.c ============================================================================== --- head/contrib/blacklist/bin/blacklistctl.c Tue Jul 3 10:51:59 2018 (r335887) +++ head/contrib/blacklist/bin/blacklistctl.c Tue Jul 3 13:53:54 2018 (r335888) @@ -35,6 +35,7 @@ #include __RCSID("$NetBSD: blacklistctl.c,v 1.21 2016/11/02 03:15:07 jnemeth Exp $"); +#include #include #include #ifdef HAVE_LIBUTIL_H Modified: head/lib/libpjdlog/pjdlog.c ============================================================================== --- head/lib/libpjdlog/pjdlog.c Tue Jul 3 10:51:59 2018 (r335887) +++ head/lib/libpjdlog/pjdlog.c Tue Jul 3 13:53:54 2018 (r335888) @@ -43,8 +43,8 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include #include +#include #include #include #include Modified: head/sbin/hastd/pjdlog.c ============================================================================== --- head/sbin/hastd/pjdlog.c Tue Jul 3 10:51:59 2018 (r335887) +++ head/sbin/hastd/pjdlog.c Tue Jul 3 13:53:54 2018 (r335888) @@ -41,8 +41,8 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include #include +#include #include #include #include