timeout.c 542 B

123456789101112131415161718192021222324252627282930
  1. /* timeout.c Copyright (C) 1997 Codemist Ltd */
  2. /*
  3. * Support code for demo version locking, invoked (generally) as a result
  4. * of macros defined in "timeout.h". If TIMEOUT is not defined this module
  5. * will have no contents.
  6. */
  7. /* Signature: 049097bf 31-May-1997 */
  8. #include <stdarg.h>
  9. #include <string.h>
  10. #include <ctype.h>
  11. #include "machine.h"
  12. #include "tags.h"
  13. #include "cslerror.h"
  14. #include "externs.h"
  15. #include "arith.h"
  16. #include "entries.h"
  17. #ifdef TIMEOUT
  18. #include "timeout.h"
  19. #endif
  20. /* end of timeout.c */