Sign in
googlers
/
jrn
/
git
/
df98236ca49648a7ef54b83776cc681f22739018
/
.
/
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
);
}