blob: da376b497199af28bd594eaa07b124af54525fc6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* -----------------------------------------------------------------------------
*
* (c) The GHC Team, 1998-2004
*
* Tiny assembler 'layer' between the C and STG worlds.
*
---------------------------------------------------------------------------- */
#ifndef STGRUN_H
#define STGRUN_H
extern StgRegTable * StgRun(StgFunPtr f, StgRegTable *basereg);
RTS_FUN(StgReturn);
#endif /* STGRUN_H */
|