summaryrefslogtreecommitdiff
path: root/math/gnumeric/patches/patch-src_complex.h
blob: aa2b10ca0646158ebbaf36291bd37cee6fe3b802 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
$NetBSD: patch-src_complex.h,v 1.1 2012/11/23 12:09:58 joerg Exp $

--- src/complex.h.orig	2012-11-19 17:27:32.000000000 +0000
+++ src/complex.h
@@ -22,7 +22,7 @@ typedef struct {
 #ifdef __GNUC__
 
 /* Have gcc -- inline functions.  */
-#define GNUMERIC_COMPLEX_PROTO(p) p; extern __inline__ p
+#define GNUMERIC_COMPLEX_PROTO(p) p; extern __attribute__((__gnu_inline__)) __inline__ p
 #define GNUMERIC_COMPLEX_BODY
 
 #else