Sign in
code
/
git
/
e19713638985533ce461db072b49112da5bd2042
/
.
/
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
);
}