137e9e146b90ee217b9196bdd4206699afa965e9
[asterisk/asterisk.git] / include / asterisk / compiler.h
1 /*
2  * Asterisk -- A telephony toolkit for Linux.
3  *
4  * Compiler-specific macros and other items
5  *
6  * Copyright (C) 2005, Digium, Inc.
7  *
8  * This program is free software, distributed under the terms of
9  * the GNU General Public License
10  */
11
12 #ifndef _ASTERISK_COMPILER_H
13 #define _ASTERISK_COMPILER_H
14
15 #if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 96)
16 #define __builtin_expect(exp, c) (exp)
17 #endif
18
19 #endif /* _ASTERISK_COMPILER_H */