Commit 1a5204a7 by nulltoken

Added gitfo_mkdir_recurs() placeholder.

parent 08190e2a
......@@ -310,3 +310,8 @@ int gitfo_dirent(
closedir(dir);
return GIT_SUCCESS;
}
int gitfo_mkdir_recurs(const char *path, int mode)
{
return gitfo_mkdir(path, mode);
}
\ No newline at end of file
......@@ -58,6 +58,7 @@ extern int gitfo_exists(const char *path);
extern int gitfo_open(const char *path, int flags);
extern int gitfo_creat(const char *path, int mode);
extern int gitfo_isdir(const char *path);
extern int gitfo_mkdir_recurs(const char *path, int mode);
#define gitfo_close(fd) close(fd)
extern int gitfo_read(git_file fd, void *buf, size_t cnt);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment