libgit2/tests-clay/clay_helpers.c
Vicent Marti bc57b80b83 Update to Clay 0.10.0
Comes with support for global events; this fixes #496.
2011-12-15 02:09:15 +01:00

12 lines
134 B
C

#include "clay_libgit2.h"
void clay_on_init(void)
{
git_threads_init();
}
void clay_on_shutdown(void)
{
git_threads_shutdown();
}