diff options
author | Maria Matejka <mq@ucw.cz> | 2021-10-13 19:08:35 +0200 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2021-10-13 19:08:35 +0200 |
commit | a54f75f454b7ed8c8ff2c1787a506528f22cbae7 (patch) | |
tree | c277e2e5a6a57c3e067398c1955a8806f987d3b9 /test | |
parent | 6cd37713781a3092f8166b2178fae35cbfec1e28 (diff) |
fixup! Multipage allocation
Diffstat (limited to 'test')
-rw-r--r-- | test/birdtest.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/birdtest.c b/test/birdtest.c index 745118d0..c6a09684 100644 --- a/test/birdtest.c +++ b/test/birdtest.c @@ -58,11 +58,14 @@ u64 bt_random_state[] = { 0x53d9772877c1b647, 0xab8ce3eb466de6c5, 0xad02844c8a8e865f, 0xe8cc78080295065d }; +void resource_sys_init(void); + void bt_init(int argc, char *argv[]) { int c; + resource_sys_init(); initstate(BT_RANDOM_SEED, (char *) bt_random_state, sizeof(bt_random_state)); bt_verbose = 0; |