diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-03-19 12:20:40 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-03-19 12:20:40 -0700 |
commit | 9b79956018fafb97da82839148d3ea2acd3e5959 (patch) | |
tree | 25d7b1a50bc3510a6a6c98ffb44f34e12932a97d /compat/msvc.h | |
parent | Merge branch 'dm/ni-maxhost-may-be-missing' (diff) | |
parent | msvc: avoid collisions between "tags" and "TAGS" (diff) | |
download | tgif-9b79956018fafb97da82839148d3ea2acd3e5959.tar.xz |
Merge branch 'rj/msvc-build'
* rj/msvc-build:
msvc: avoid collisions between "tags" and "TAGS"
msvc: test-svn-fe: Fix linker "unresolved external" error
msvc: Fix build by adding missing symbol defines
msvc: git-daemon: Fix linker "unresolved external" errors
msvc: Fix compilation errors caused by poll.h emulation
Diffstat (limited to 'compat/msvc.h')
-rw-r--r-- | compat/msvc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/compat/msvc.h b/compat/msvc.h index aa4b56315a..96b6d605da 100644 --- a/compat/msvc.h +++ b/compat/msvc.h @@ -12,6 +12,8 @@ #define __attribute__(x) #define strncasecmp _strnicmp #define ftruncate _chsize +#define strtoull _strtoui64 +#define strtoll _strtoi64 static __inline int strcasecmp (const char *s1, const char *s2) { |