summaryrefslogtreecommitdiff
path: root/rts/hooks/FlagDefaults.c
blob: 741745524fd0003306be2751daef6e83d995cdab (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 "rts/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.
  */
}