From owner-svn-soc-all@freebsd.org Wed Jul 22 20:28:31 2015 Return-Path: Delivered-To: svn-soc-all@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 BE72D9A8168 for ; Wed, 22 Jul 2015 20:28:31 +0000 (UTC) (envelope-from clord@FreeBSD.org) Received: from socsvn.freebsd.org (socsvn.freebsd.org [IPv6:2001:1900:2254:206a::50:2]) (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 AF2A712AB for ; Wed, 22 Jul 2015 20:28:31 +0000 (UTC) (envelope-from clord@FreeBSD.org) Received: from socsvn.freebsd.org ([127.0.1.124]) by socsvn.freebsd.org (8.15.2/8.15.2) with ESMTP id t6MKSVrM036892 for ; Wed, 22 Jul 2015 20:28:31 GMT (envelope-from clord@FreeBSD.org) Received: (from www@localhost) by socsvn.freebsd.org (8.15.2/8.15.2/Submit) id t6MKSV4l036890 for svn-soc-all@FreeBSD.org; Wed, 22 Jul 2015 20:28:31 GMT (envelope-from clord@FreeBSD.org) Date: Wed, 22 Jul 2015 20:28:31 GMT Message-Id: <201507222028.t6MKSV4l036890@socsvn.freebsd.org> X-Authentication-Warning: socsvn.freebsd.org: www set sender to clord@FreeBSD.org using -f From: clord@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r288680 - soc2015/clord/head/sys/contrib/ficl/i386 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Jul 2015 20:28:31 -0000 Author: clord Date: Wed Jul 22 20:28:30 2015 New Revision: 288680 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=288680 Log: Take care of troublesome prototypes Modified: soc2015/clord/head/sys/contrib/ficl/i386/sysdep.h Modified: soc2015/clord/head/sys/contrib/ficl/i386/sysdep.h ============================================================================== --- soc2015/clord/head/sys/contrib/ficl/i386/sysdep.h Wed Jul 22 20:25:40 2015 (r288679) +++ soc2015/clord/head/sys/contrib/ficl/i386/sysdep.h Wed Jul 22 20:28:30 2015 (r288680) @@ -402,8 +402,10 @@ ** on a 32 bit CPU than in C, which usually doesn't support ** the double length result (but it should). */ +#ifndef __SYSDEP_H__ DPUNS ficlLongMul(FICL_UNS x, FICL_UNS y); UNSQR ficlLongDiv(DPUNS q, FICL_UNS y); +#endif /*