Hash : 73b58c91 Author : Date : 2013-01-04T20:00:09
clar: fix warning on Windows
Download
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
#include "clar_libgit2.h" #ifdef _WIN32 __cdecl int #else int #endif 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; }