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