Date: Mon, 27 Jul 2015 21:24:15 GMT From: clord@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r288820 - soc2015/clord/head/sys/contrib/ficl Message-ID: <201507272124.t6RLOFm2049521@socsvn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 *)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201507272124.t6RLOFm2049521>