home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c221 / 6.ddi / MWHC.006 / 2 < prev    next >
Encoding:
Text File  |  1992-12-09  |  491 b   |  24 lines

  1. /*
  2.  *   debugaid.cf -- extra-ANSI 
  3.  *
  4.  *   Run-time debugging aids.
  5.  *
  6.  *           Copyright (c) 1990, MetaWare Incorporated
  7.  */
  8.  
  9. #ifndef _DEBUGAID_CF
  10. #define _DEBUGAID_CF
  11.  
  12. #include <implemen.cf>
  13. #include <language.cf>
  14.  
  15. #pragma Global_aliasing_convention(_Private_prefix "%r");
  16. #pragma Calling_convention(PASCAL);
  17.  
  18. void stackdump(int F);    /* Produce a stack dump on F. */
  19.  
  20. #pragma Calling_convention();
  21. #pragma Global_aliasing_convention();
  22.  
  23. #endif /* _DEBUGAID_CF */
  24.