move gccmacro from pulsecore/ to pulse/

git-svn-id: file:///home/lennart/svn/public/pulseaudio/branches/glitch-free@2232 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
Lennart Poettering 2008-04-11 16:19:35 +00:00
parent 5d7128abf9
commit bb9792a616

View file

@ -77,13 +77,12 @@
#endif
#endif
#ifndef PA_LIKELY
#ifndef PA_GCC_DEPRECATED
#ifdef __GNUC__
#define PA_LIKELY(x) (__builtin_expect(!!(x),1))
#define PA_UNLIKELY(x) (__builtin_expect((x),0))
#define PA_GCC_DEPRECATED __attribute__ ((deprecated))
#else
#define PA_LIKELY(x) (x)
#define PA_UNLIKELY(x) (x)
/** This function is deprecated **/
#define PA_GCC_DEPRECATED
#endif
#endif