compiler.h
来自「Q921的LINUX下的驱动源码」· C头文件 代码 · 共 20 行
H
20 行
/* * Asterisk -- A telephony toolkit for Linux. * * Compiler-specific macros and other items * * Copyright (C) 2005, Digium, Inc. * * This program is free software, distributed under the terms of * the GNU General Public License */#ifndef _ASTERISK_COMPILER_H#define _ASTERISK_COMPILER_H#if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 96)#define __builtin_expect(exp, c) (exp)#endif#endif /* _ASTERISK_COMPILER_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?