From owner-svn-src-head@freebsd.org Sat Oct 21 12:15:13 2017 Return-Path: Delivered-To: svn-src-head@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 9FA5DE54EFA; Sat, 21 Oct 2017 12:15:13 +0000 (UTC) (envelope-from mmel@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 6F1B68260A; Sat, 21 Oct 2017 12:15:13 +0000 (UTC) (envelope-from mmel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v9LCFClo037192; Sat, 21 Oct 2017 12:15:12 GMT (envelope-from mmel@FreeBSD.org) Received: (from mmel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v9LCFCol037191; Sat, 21 Oct 2017 12:15:12 GMT (envelope-from mmel@FreeBSD.org) Message-Id: <201710211215.v9LCFCol037191@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mmel set sender to mmel@FreeBSD.org using -f From: Michal Meloun Date: Sat, 21 Oct 2017 12:15:12 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r324816 - head/sys/sys X-SVN-Group: head X-SVN-Commit-Author: mmel X-SVN-Commit-Paths: head/sys/sys X-SVN-Commit-Revision: 324816 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.23 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: Sat, 21 Oct 2017 12:15:13 -0000 Author: mmel Date: Sat Oct 21 12:15:12 2017 New Revision: 324816 URL: https://svnweb.freebsd.org/changeset/base/324816 Log: Add C++ decoration to auxv.v forgotten in r324815. MFC after: 1 month Modified: head/sys/sys/auxv.h Modified: head/sys/sys/auxv.h ============================================================================== --- head/sys/sys/auxv.h Sat Oct 21 12:06:18 2017 (r324815) +++ head/sys/sys/auxv.h Sat Oct 21 12:15:12 2017 (r324816) @@ -32,6 +32,8 @@ #include #include +__BEGIN_DECLS int elf_aux_info(int aux, void *buf, int buflen); +__END_DECLS #endif /* !_SYS_AUXV_H_ */