blob: b3b255e4d94f1ab661f5cc628a484c364d18dc9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
$NetBSD: patch-af,v 1.1 2004/11/18 14:20:26 sketch Exp $
--- config.h.in.orig 2004-11-13 22:06:01.870247000 +0000
+++ config.h.in 2004-11-13 22:07:10.887923000 +0000
@@ -99,3 +99,8 @@
#ifndef __cplusplus
#undef inline
#endif
+
+/* __PRETTY_FUNCTION__ is a GNUism only */
+#ifndef __GNUC__
+#define __PRETTY_FUNCTION__ __func__
+#endif
|