mirror of
https://gitee.com/openharmony/third_party_libsnd
synced 2024-11-23 09:59:54 +00:00
src/common.h : Define SF_PLATFORM_S64 for non-gcc compilers with 'long long' type.
This commit is contained in:
parent
f2e1e833de
commit
aad0c4bf0d
@ -1,3 +1,8 @@
|
||||
2009-03-17 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
|
||||
|
||||
* src/common.h
|
||||
Define SF_PLATFORM_S64 for non-gcc compilers with 'long long' type.
|
||||
|
||||
2009-03-15 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
|
||||
|
||||
* src/common.h src/caf.c src/sndfile.c
|
||||
|
@ -39,6 +39,8 @@
|
||||
|
||||
#if (SIZEOF_LONG == 8)
|
||||
# define SF_PLATFORM_S64(x) x##l
|
||||
#elif (SIZEOF_LONG_LONG == 8)
|
||||
# define SF_PLATFORM_S64(x) x##ll
|
||||
#elif COMPILER_IS_GCC
|
||||
# define SF_PLATFORM_S64(x) x##ll
|
||||
#elif OS_IS_WIN32
|
||||
|
Loading…
Reference in New Issue
Block a user