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