mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-03 04:34:15 +00:00
14 lines
315 B
C
14 lines
315 B
C
/*
|
|
* 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;
|
|
}
|