浏览代码

Added definition of __THROW

David Schleef 23 年之前
父节点
当前提交
c08da01578
共有 1 个文件被更改,包括 13 次插入0 次删除
  1. 13 0
      include/sys/cdefs.h

+ 13 - 0
include/sys/cdefs.h

@@ -28,4 +28,17 @@
 #define __CONSTVALUE
 #define __CONSTVALUE2
 
+#ifdef __GNUC__
+/* GCC can always grok prototypes.  For C++ programs we add throw()
+   to help it optimize the function calls.  But this works only with
+   gcc 2.8.x and egcs.  */
+#if defined __cplusplus && __GNUC_PREREQ (2,8)
+#define __THROW		throw()
+#else
+#define __THROW
+#endif
+#else /* GCC */
+#define __THROW
+#endif
+
 #endif