/* ----------------------------------------------------------------------------- * * (c) The University of Glasgow 2002-2004 * * Declarations for things defined in AutoApply.cmm * * -------------------------------------------------------------------------- */ #pragma once // canned slow entry points, indexed by arg type (ARG_P, ARG_PP, etc.) #if defined(IN_STG_CODE) extern RTS_PRIVATE StgWord stg_ap_stack_entries[]; #else extern RTS_PRIVATE StgFun *stg_ap_stack_entries[]; #endif // canned register save code for heap check failure in a function #if defined(IN_STG_CODE) extern RTS_PRIVATE StgWord stg_stack_save_entries[]; #else extern RTS_PRIVATE StgFun *stg_stack_save_entries[]; #endif