Sign in
googlers
/
jrn
/
git
/
963eda258aac6d7ce8ce541215dc89b100244d49
/
.
/
compat
/
fsmonitor
/
fsm-ipc-win32.c
blob: 41984ea48e26b8c5fc9cf8ed9bc6851957a230d9 [
file
] [
log
] [
blame
]
#include
"git-compat-util.h"
#include
"config.h"
#include
"fsmonitor-ipc.h"
#include
"path.h"
const
char
*
fsmonitor_ipc__get_path
(
struct
repository
*
r
)
{
static
char
*
ret
;
if
(!
ret
)
ret
=
repo_git_path
(
r
,
"fsmonitor--daemon.ipc"
);
return
ret
;
}