summaryrefslogtreecommitdiff
path: root/src/win32/posix.h
diff options
context:
space:
mode:
authorRussell Belfer <rb@github.com>2012-08-23 09:20:17 -0700
committerRussell Belfer <rb@github.com>2012-08-23 09:20:17 -0700
commite9ca852e4d77e1b1723a2dceddfa2037677e2fb4 (patch)
treebb1d939d73ce2c2bd9d3001c643bcf28602a8271 /src/win32/posix.h
parent85bd17462662905dfdf9247b262480280a616ad4 (diff)
downloadlibgit2-e9ca852e4d77e1b1723a2dceddfa2037677e2fb4.tar.gz
Fix warnings and merge issues on Win64
Diffstat (limited to 'src/win32/posix.h')
-rw-r--r--src/win32/posix.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/win32/posix.h b/src/win32/posix.h
index def3a766a..14caae418 100644
--- a/src/win32/posix.h
+++ b/src/win32/posix.h
@@ -19,14 +19,6 @@ GIT_INLINE(int) p_link(const char *old, const char *new)
return -1;
}
-GIT_INLINE(int) p_symlink(const char *old, const char *new)
-{
- GIT_UNUSED(old);
- GIT_UNUSED(new);
- errno = ENOSYS;
- return -1;
-}
-
GIT_INLINE(int) p_mkdir(const char *path, mode_t mode)
{
wchar_t* buf = gitwin_to_utf16(path);