enable C99-external_inline for icl

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
J. Bohl 2012-06-16 00:20:18 +02:00 committed by Michael Niedermayer
parent 137e80817d
commit fbed9317ff

View File

@ -41,8 +41,12 @@
#endif #endif
#ifndef av_extern_inline #ifndef av_extern_inline
#if defined(__ICL) && __ICL >= 1210 || defined(__GNUC_STDC_INLINE__)
# define av_extern_inline extern inline
#else
# define av_extern_inline inline # define av_extern_inline inline
#endif #endif
#endif
#ifndef av_noreturn #ifndef av_noreturn
#if AV_GCC_VERSION_AT_LEAST(2,5) #if AV_GCC_VERSION_AT_LEAST(2,5)