12345678910111213141516171819202122232425262728293031 |
- /* File demo.c Copyright (c) Codemist Ltd, 1991-2002 */
- /*
- * Replacement for gc.c, preserve.c and fasl.c for demo use.
- */
- /*
- * This code may be used and modified, and redistributed in binary
- * or source form, subject to the "CCL Public License", which should
- * accompany it. This license is a variant on the BSD license, and thus
- * permits use of code derived from this in either open and commercial
- * projects: but it does require that updates to this code be made
- * available back to the originators of the package.
- * Before merging other code in with this or linking this code
- * with other packages or libraries please check that the license terms
- * of the other material are compatible with those of this.
- */
- /* Signature: 1fd45dd3 08-Apr-2002 */
- #define DEMO_MODE 1
- #include "gc.c"
- #include "preserve.c"
- #include "fasl.c"
- /* end of demo.c */
|