mirror of
https://git.proxmox.com/git/libgit2
synced 2025-06-20 22:08:41 +00:00
Add missing function declarations to avoid MSVC compiler warnings
The better solution would probably be to turn the gitfo_lstat / gitfo_readlink macros into real functions that wrap either lstat or gitfo_lstat__w32 (and readlink or gitfo_readlink__w32). However, that would introduce an indirection unless inlined. For now, this is the less intrusive change.
This commit is contained in:
parent
3f66c20202
commit
e6480970b4
@ -98,6 +98,9 @@ extern int gitfo_mv_force(const char *from, const char *to);
|
||||
#ifdef GIT_WIN32
|
||||
# define gitfo_lstat(p,b) gitfo_lstat__w32(p,b)
|
||||
# define gitfo_readlink(a, b, c) gitfo_readlink__w32(a, b, c)
|
||||
|
||||
extern int gitfo_lstat__w32(const char *file_name, struct stat *buf);
|
||||
extern int gitfo_readlink__w32(const char *link, char *target, size_t target_len);
|
||||
#else
|
||||
# define gitfo_lstat(p,b) lstat(p,b)
|
||||
# define gitfo_readlink(a, b, c) readlink(a, b, c)
|
||||
|
Loading…
Reference in New Issue
Block a user