diff options
| author | Ben Straub <bstraub@github.com> | 2012-07-16 16:16:11 -0700 |
|---|---|---|
| committer | Ben Straub <bstraub@github.com> | 2012-07-16 16:22:41 -0700 |
| commit | 1d68fcd04b21a2c5665d0ca6a5543e7166c73457 (patch) | |
| tree | 865a768e68ff076dcfa6d374af5234185b93dd5c /src/win32/posix.h | |
| parent | 9587895f572ad4808fb1746dd6510f92ec30c3a6 (diff) | |
| download | libgit2-1d68fcd04b21a2c5665d0ca6a5543e7166c73457.tar.gz | |
Checkout: handle symlinks.
Includes unfinished win32 implementation.
Diffstat (limited to 'src/win32/posix.h')
| -rw-r--r-- | src/win32/posix.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/win32/posix.h b/src/win32/posix.h index baa4a3b4e..14caae418 100644 --- a/src/win32/posix.h +++ b/src/win32/posix.h @@ -33,6 +33,7 @@ GIT_INLINE(int) p_mkdir(const char *path, mode_t mode) extern int p_unlink(const char *path); extern int p_lstat(const char *file_name, struct stat *buf); extern int p_readlink(const char *link, char *target, size_t target_len); +extern int p_symlink(const char *old, const char *new); extern int p_hide_directory__w32(const char *path); extern char *p_realpath(const char *orig_path, char *buffer); extern int p_vsnprintf(char *buffer, size_t count, const char *format, va_list argptr); |
