Welcome to mirror list, hosted at ThFree Co, Russian Federation.

common-main.c - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2b96bbf436bd5a519ca815642decee255ef814a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "git-compat-util.h"

int main(int argc, char **av)
{
	/*
	 * This const trickery is explained in
	 * 84d32bf7678259c08406571cd6ce4b7a6724dcba
	 */
	const char **argv = (const char **)av;

	return cmd_main(argc, argv);
}