2 * Asterisk -- A telephony toolkit for Linux.
4 * Compiler-specific macros and other items
6 * Copyright (C) 2005, Digium, Inc.
8 * This program is free software, distributed under the terms of
9 * the GNU General Public License
12 #ifndef _ASTERISK_COMPILER_H
13 #define _ASTERISK_COMPILER_H
15 #if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 96)
16 #define __builtin_expect(exp, c) (exp)
19 #endif /* _ASTERISK_COMPILER_H */