blob: 1307fa023931032d6ea072eb98d2761683c35a7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* -----------------------------------------------------------------------------
*
* User-overridable RTS hooks.
*
* ---------------------------------------------------------------------------*/
#include "PosixSource.h"
#include "Rts.h"
#include "Hooks.h"
void
FlagDefaultsHook (void)
{ /* this is called *after* RtsFlags has had
its defaults set, but *before* we start
processing the RTS command-line options.
This default version does *nothing*.
The user may provide a more interesting
one.
*/
}
|