From owner-svn-soc-all@freebsd.org Mon Jul 27 21:24:16 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 88EF59AC21F for ; Mon, 27 Jul 2015 21:24:16 +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 7A01BF9B for ; Mon, 27 Jul 2015 21:24:16 +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 t6RLOGN2049523 for ; Mon, 27 Jul 2015 21:24:16 GMT (envelope-from clord@FreeBSD.org) Received: (from www@localhost) by socsvn.freebsd.org (8.15.2/8.15.2/Submit) id t6RLOFm2049521 for svn-soc-all@FreeBSD.org; Mon, 27 Jul 2015 21:24:15 GMT (envelope-from clord@FreeBSD.org) Date: Mon, 27 Jul 2015 21:24:15 GMT Message-Id: <201507272124.t6RLOFm2049521@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: r288820 - soc2015/clord/head/sys/contrib/ficl 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: Mon, 27 Jul 2015 21:24:16 -0000 Author: clord Date: Mon Jul 27 21:24:15 2015 New Revision: 288820 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=288820 Log: Change position of a few typedefs to allow compatibility.c to compile properly Modified: soc2015/clord/head/sys/contrib/ficl/ficlcompatibility.h Modified: soc2015/clord/head/sys/contrib/ficl/ficlcompatibility.h ============================================================================== --- soc2015/clord/head/sys/contrib/ficl/ficlcompatibility.h Mon Jul 27 19:21:23 2015 (r288819) +++ soc2015/clord/head/sys/contrib/ficl/ficlcompatibility.h Mon Jul 27 21:24:15 2015 (r288820) @@ -1,11 +1,13 @@ /* $FreeBSD$ */ +typedef struct vm FICL_VM; +#define CELL ficlCell + #ifndef FICL_FORCE_COMPATIBILITY struct ficl_word; typedef struct ficl_word FICL_WORD; struct vm; -typedef struct vm FICL_VM; struct ficl_dict; typedef struct ficl_dict FICL_DICT; struct ficl_system; @@ -21,7 +23,6 @@ typedef ficlUnsigned8 UNS8; #define _cell ficlCell -#define CELL ficlCell #define LVALUEtoCELL(v) (*(ficlCell *)&v) #define PTRtoCELL (ficlCell *)(void *)