bytes.c 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. * bytes.c Copyright (C) 1991-2002, Codemist Ltd
  3. *
  4. *
  5. * version of bytes1.c that does not keep counts of how many
  6. * bytecodes are executed for each function. I have the version that
  7. * does keep counts as the file that (directly) contains the code
  8. * since that makes use of one of the debuggers that I use easier (Ugh!)
  9. */
  10. /*
  11. * This code may be used and modified, and redistributed in binary
  12. * or source form, subject to the "CCL Public License", which should
  13. * accompany it. This license is a variant on the BSD license, and thus
  14. * permits use of code derived from this in either open and commercial
  15. * projects: but it does require that updates to this code be made
  16. * available back to the originators of the package.
  17. * Before merging other code in with this or linking this code
  18. * with other packages or libraries please check that the license terms
  19. * of the other material are compatible with those of this.
  20. */
  21. /* Signature: 56c013d1 08-Apr-2002 */
  22. #define NO_BYTECOUNT 1
  23. #include "bytes1.c"
  24. /* end of bytes.c */