Force the test's main function to use cdecl under Windows

Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>
This commit is contained in:
Carlos Martín Nieto 2011-08-06 11:26:59 +02:00
parent 8c1d5d4839
commit 6e6ec54beb

View File

@ -69,7 +69,12 @@ static libgit2_suite suite_methods[]= {
#define GIT_SUITE_COUNT (ARRAY_SIZE(suite_methods))
int main(int GIT_UNUSED(argc), char *GIT_UNUSED(argv[]))
#ifdef GIT_WIN32
int __cdecl
#else
int
#endif
main(int GIT_UNUSED(argc), char *GIT_UNUSED(argv[]))
{
unsigned int i, failures;