mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-06 19:37:29 +00:00
17 lines
210 B
C
17 lines
210 B
C
#include "clar_libgit2.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
int res;
|
|
|
|
git_threads_init();
|
|
|
|
/* Run the test suite */
|
|
res = clar_test(argc, argv);
|
|
|
|
giterr_clear();
|
|
git_threads_shutdown();
|
|
|
|
return res;
|
|
}
|