home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c221 / 5.ddi / MWHC.005 / S0 < prev    next >
Encoding:
Text File  |  1992-01-07  |  587 b   |  27 lines

  1. /*
  2.  *   debugaid.cf -- non-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. /* NOTE:  You MUST supply F as 1 (stdout) or 2 (stderr).  No other
  19.    parameters are valid.
  20. */
  21. void stackdump(int F);    /* Produce a stack dump on F. */
  22.  
  23. #pragma Calling_convention();
  24. #pragma Global_aliasing_convention();
  25.  
  26. #endif /* _DEBUGAID_CF */
  27.