search for: ff5c8af

Displaying 2 results from an estimated 2 matches for "ff5c8af".

Did you mean: ff5c873
2012 Apr 17
1
[PATCH 2/2] replace local_strtoull with _strtoui64 in windows
Previous patch replaced the other local_strtoll with _strtoi64 --- include/share/compat.h | 3 ++- src/metaflac/options.c | 23 +---------------------- 2 files changed, 3 insertions(+), 23 deletions(-) diff --git a/include/share/compat.h b/include/share/compat.h index ff5c8af..8ad3698 100644 --- a/include/share/compat.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/opt...
2012 Apr 17
1
[PATCH] Remove local_strtoull, windows has equivalent function _strtoui64
...h | 8 ++++++++ src/flac/main.c | 37 +------------------------------------ src/share/grabbag/seektable.c | 31 +------------------------------ 3 files changed, 10 insertions(+), 66 deletions(-) diff --git a/include/share/compat.h b/include/share/compat.h index e9ac958..ff5c8af 100644 --- a/include/share/compat.h +++ b/include/share/compat.h @@ -59,3 +59,11 @@ #include <inttypes.h> #endif +#if defined(_MSC_VER) +#define strtoll _strtoi64 +#endif + +#if defined(_MSC_VER) +#define restrict __restrict +#endif + diff --git a/src/flac/main.c b/src/flac/main.c index...