mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-06 23:26:39 +00:00
12 lines
134 B
C
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();
|
|
}
|