socsvn commit: r288820 - soc2015/clord/head/sys/contrib/ficl

clord at FreeBSD.org clord at FreeBSD.org
Mon Jul 27 21:24:16 UTC 2015


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 *)


More information about the svn-soc-all mailing list