debug.c
上传用户:xiaoan1112
上传日期:2013-04-11
资源大小:19621k
文件大小:1k
源码类别:

操作系统开发

开发平台:

Visual C++

  1. /*** 
  2. *debug.c - utility routines for internal debugging of the interpreter
  3. *
  4. * Copyright <C> 1986, Microsoft Corporation
  5. *
  6. *Purpose:
  7. * This module provides general purpose utilities for writing internal
  8. * debugging and other non-release code for the interpreter.
  9. *
  10. *******************************************************************************/
  11. #include "version.h"
  12. #if !CONTEXT_H
  13. #include "context.h"
  14. #endif
  15. #if !HEAP_H
  16. #include "heap.h"
  17. #endif
  18. #if !TXTMGR_H
  19. #include "txtmgr.h"
  20. #endif
  21. #if !VARIABLE_H
  22. #include "variable.h"
  23. #endif