exec_cmd.hon commit short i/o: fix calls to write to use xwrite or write_in_full (93822c2)
   1#ifndef __GIT_EXEC_CMD_H_
   2#define __GIT_EXEC_CMD_H_
   3
   4extern void git_set_exec_path(const char *exec_path);
   5extern const char* git_exec_path(void);
   6extern int execv_git_cmd(const char **argv); /* NULL terminated */
   7extern int execl_git_cmd(const char *cmd, ...);
   8
   9
  10#endif /* __GIT_EXEC_CMD_H_ */