summaryrefslogtreecommitdiff
path: root/apps/plugins/mpegplayer/attributes.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/mpegplayer/attributes.h')
-rw-r--r--apps/plugins/mpegplayer/attributes.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/apps/plugins/mpegplayer/attributes.h b/apps/plugins/mpegplayer/attributes.h
index 9d708061c0..7ad83a3e6e 100644
--- a/apps/plugins/mpegplayer/attributes.h
+++ b/apps/plugins/mpegplayer/attributes.h
@@ -32,10 +32,3 @@
32#define ATTR_ALIGN(align) 32#define ATTR_ALIGN(align)
33#endif 33#endif
34 34
35#ifdef HAVE_BUILTIN_EXPECT
36#define likely(x) __builtin_expect ((x) != 0, 1)
37#define unlikely(x) __builtin_expect ((x) != 0, 0)
38#else
39#define likely(x) (x)
40#define unlikely(x) (x)
41#endif