blob: 2af8a14eca5d8edbdeb55989632a0e740c28e7af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/*
* Dummy project to validate header files
*
* This project is not intended to be executed, it should only include all
* header files to make sure that they can be used with stricter compiler
* settings than the libgit2 source files generally supports.
*/
#include "git2.h"
int main(void)
{
return 0;
}
|