The thirteenth batch
[git.git] / compat / fsmonitor / fsm-ipc-win32.c
blob41984ea48e26b8c5fc9cf8ed9bc6851957a230d9
1 #include "git-compat-util.h"
2 #include "config.h"
3 #include "fsmonitor-ipc.h"
4 #include "path.h"
6 const char *fsmonitor_ipc__get_path(struct repository *r) {
7 static char *ret;
8 if (!ret)
9 ret = repo_git_path(r, "fsmonitor--daemon.ipc");
10 return ret;