home *** CD-ROM | disk | FTP | other *** search
- /*
- * debugaid.cf -- non-ANSI
- *
- * Run-time debugging aids.
- *
- * Copyright (c) 1990, MetaWare Incorporated
- */
-
- #ifndef _DEBUGAID_CF
- #define _DEBUGAID_CF
-
- #include <implemen.cf>
- #include <language.cf>
-
- #pragma Global_aliasing_convention(_Private_prefix "%r");
- #pragma Calling_convention(PASCAL);
-
- /* NOTE: You MUST supply F as 1 (stdout) or 2 (stderr). No other
- parameters are valid.
- */
- void stackdump(int F); /* Produce a stack dump on F. */
-
- #pragma Calling_convention();
- #pragma Global_aliasing_convention();
-
- #endif /* _DEBUGAID_CF */
-