From e1c2cf574732c52c4df791274f67381458f5e699 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Mon, 16 Nov 2015 14:06:55 +0100 Subject: Always look up CreateSymbolicLink on Windows --- src/util.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/util.c') diff --git a/src/util.c b/src/util.c index d51e82d..a0127f5 100644 --- a/src/util.c +++ b/src/util.c @@ -35,7 +35,6 @@ # include # define F_OK 0 # define mkdir(path, flags) _mkdir(path) -# if (defined(_MSC_VER) && (_MSC_VER < 1500)) /** Implement 'CreateSymbolicLink()' for MSVC 8 or earlier */ BOOLEAN WINAPI CreateSymbolicLink(LPCTSTR linkpath, LPCTSTR targetpath, DWORD flags) @@ -46,7 +45,6 @@ CreateSymbolicLink(LPCTSTR linkpath, LPCTSTR targetpath, DWORD flags) "CreateSymbolicLinkA"); return pfn ? pfn(linkpath, targetpath, flags) : 0; } -# endif /* _MSC_VER < 1500 */ #else # include # include -- cgit v1.2.1