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

fileno.c « compat - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8e80ef335d84ecf5ccec6c5994e684c3951cca17 (plain)
1
2
3
4
5
6
7
#define COMPAT_CODE_FILENO
#include "../git-compat-util.h"

int git_fileno(FILE *stream)
{
	return fileno(stream);
}