Displaying 1 result from an estimated 1 matches for "43e1f6c".
2012 Apr 17
1
[PATCH 2/2] replace local_strtoull with _strtoui64 in windows
...ompat.h
+++ b/include/share/compat.h
@@ -61,9 +61,10 @@
#if defined(_MSC_VER)
#define strtoll _strtoi64
+#define strtoull _strtoui64
#endif
-#if defined(_MSC_VER)
+#if defined(_MSC_VER)
#define restrict __restrict
#endif
diff --git a/src/metaflac/options.c b/src/metaflac/options.c
index 43e1f6c..0f227da 100644
--- a/src/metaflac/options.c
+++ b/src/metaflac/options.c
@@ -25,6 +25,7 @@
#include "utils.h"
#include "FLAC/assert.h"
#include "share/alloc.h"
+#include "share/compat.h"
#include "share/grabbag/replaygain.h"
#include <ctype...