]> git.ipfire.org Git - thirdparty/git.git/blame - exec_cmd.h
Makefile: Normalize $(bindir) and $(gitexecdir) before comparing
[thirdparty/git.git] / exec_cmd.h
CommitLineData
e0173ad9
JH
1#ifndef GIT_EXEC_CMD_H
2#define GIT_EXEC_CMD_H
77cb17e9 3
384df833 4extern void git_set_argv_exec_path(const char *exec_path);
77cb17e9 5extern const char* git_exec_path(void);
511707d4 6extern void setup_path(const char *);
9201c707
JH
7extern int execv_git_cmd(const char **argv); /* NULL terminated */
8extern int execl_git_cmd(const char *cmd, ...);
2de9de5e 9extern const char *system_path(const char *path);
77cb17e9 10
e0173ad9 11#endif /* GIT_EXEC_CMD_H */