diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2022-04-19 15:30:40 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2022-04-22 00:50:39 -0700 |
commit | 10fca58ba81c3c9bc14212d4ae4c7bc83deafcec (patch) | |
tree | b2c1e8894b7bd98fd592bc84a30be07212dbc438 /src/til.c | |
parent | f8929c9f06eff1dc2efa8331a26fb0f7b1ab3252 (diff) |
til: wire up modules/checkers
expose the checkers module to the rest of the world
Diffstat (limited to 'src/til.c')
-rw-r--r-- | src/til.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -24,6 +24,7 @@ static til_threads_t *til_threads; extern til_module_t blinds_module; +extern til_module_t checkers_module; extern til_module_t compose_module; extern til_module_t drizzle_module; extern til_module_t flui2d_module; @@ -46,6 +47,7 @@ extern til_module_t swarm_module; static const til_module_t *modules[] = { &blinds_module, + &checkers_module, &compose_module, &drizzle_module, &flui2d_module, |