socsvn commit: r287930 - soc2015/clord/head/sys/contrib/ficl
clord at FreeBSD.org
clord at FreeBSD.org
Fri Jul 3 21:47:37 UTC 2015
Author: clord
Date: Fri Jul 3 21:47:36 2015
New Revision: 287930
URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=287930
Log:
Include ficlcompatibility.h a little sooner so to avoid problem of compiler
not seeing FICL_VM as a valid type. Also delete an extra #endif conditional
directive.
Modified:
soc2015/clord/head/sys/contrib/ficl/ficl.h
Modified: soc2015/clord/head/sys/contrib/ficl/ficl.h
==============================================================================
--- soc2015/clord/head/sys/contrib/ficl/ficl.h Fri Jul 3 21:42:00 2015 (r287929)
+++ soc2015/clord/head/sys/contrib/ficl/ficl.h Fri Jul 3 21:47:36 2015 (r287930)
@@ -1622,6 +1622,9 @@
#define ficlSystemGetContext(system) ((system)->context)
+#if FICL_WANT_COMPATIBILITY
+ #include "ficlcompatibility.h"
+#endif /* FICL_WANT_COMPATIBILITY */
/*
** External interface to Ficl...
@@ -1809,7 +1812,6 @@
FILE *f;
char filename[256];
} ficlFile;
-#endif
#if defined (FICL_PLATFORM_HAS_FTRUNCATE)
@@ -1871,11 +1873,6 @@
-#if FICL_WANT_COMPATIBILITY
- #include "ficlcompatibility.h"
-#endif /* FICL_WANT_COMPATIBILITY */
-
-
#ifdef __cplusplus
}
#endif
More information about the svn-soc-all
mailing list