blob: 0ce72935d6bce2679957ce4b97a3cc92554e2c77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/* -----------------------------------------------------------------------------
*
* (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);
#if defined(mingw32_HOST_OS)
StgWord8 *win32AllocStack(void);
#endif
#endif /* STGRUN_H */
// Local Variables:
// mode: C
// fill-column: 80
// indent-tabs-mode: nil
// c-basic-offset: 4
// buffer-file-coding-system: utf-8-unix
// End:
|