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