git/compat/fileno.c

8 lines
110 B
C

#define COMPAT_CODE
#include "../git-compat-util.h"
int git_fileno(FILE *stream)
{
return fileno(stream);
}