diff options
| author | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:17:47 +0000 |
|---|---|---|
| committer | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:17:47 +0000 |
| commit | 62b10f1e2c716dcc2b1a7d1a2d7c4ed6042edbf5 (patch) | |
| tree | 6024b721fc6179a7d44e37f7c6b73380cedb10df /src/base.c | |
Diffstat (limited to 'src/base.c')
| -rw-r--r-- | src/base.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/base.c b/src/base.c new file mode 100644 index 0000000..08c6568 --- /dev/null +++ b/src/base.c @@ -0,0 +1,13 @@ +#include "impl/base.h" + +void +impl_init(void) +{ + /* Initialize resources here */ +} + +void +impl_cleanup(void) +{ + /* Cleanup resources here */ +} |