blob: 18cc76c8f95139ac7a1efcb5b47f286e2af3ddb7 (
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
27
28
29
|
/* -----------------------------------------------------------------------------
*
* User-overridable RTS hooks.
*
* ---------------------------------------------------------------------------*/
#include "PosixSource.h"
#include "Rts.h"
void
defaultsHook (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.
*/
}
// Local Variables:
// mode: C
// fill-column: 80
// indent-tabs-mode: nil
// c-basic-offset: 4
// buffer-file-coding-system: utf-8-unix
// End:
|