demo.c 917 B

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