Browse Source

Added definition of __THROW

David Schleef 23 years ago
parent
commit
c08da01578
1 changed files with 13 additions and 0 deletions
  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