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