Sign in
code
/
git
/
b56b48301ea221ae3dd6dc01f887f0b72e10e729
/
.
/
compat
/
fileno.c
blob: 8e80ef335d84ecf5ccec6c5994e684c3951cca17 [
file
]
#define
COMPAT_CODE_FILENO
#include
"../git-compat-util.h"
int
git_fileno
(
FILE
*
stream
)
{
return
fileno
(
stream
);
}