Skip to content

Commit ccc72d9

Browse files
committed
fix gcc compilation
1 parent 067c6ed commit ccc72d9

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

external/gpl3/gcc/dist/gcc/cp/cfns.gperf

+6
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,16 @@ along with GCC; see the file COPYING3. If not see
1818
<http://www.gnu.org/licenses/>. */
1919
#ifdef __GNUC__
2020
__inline
21+
#ifdef __GNUC_STDC_INLINE__
22+
__attribute__ ((__gnu_inline__))
23+
#endif
2124
#endif
2225
static unsigned int hash (const char *, unsigned int);
2326
#ifdef __GNUC__
2427
__inline
28+
#ifdef __GNUC_STDC_INLINE__
29+
__attribute__ ((__gnu_inline__))
30+
#endif
2531
#endif
2632
const char * libc_name_p (const char *, unsigned int);
2733
%}

external/gpl3/gcc/dist/gcc/cp/cfns.h

+9
Original file line numberDiff line numberDiff line change
@@ -49,16 +49,25 @@ along with GCC; see the file COPYING3. If not see
4949
<http://www.gnu.org/licenses/>. */
5050
#ifdef __GNUC__
5151
__inline
52+
#ifdef __GNUC_STDC_INLINE__
53+
__attribute__ ((__gnu_inline__))
54+
#endif
5255
#endif
5356
static unsigned int hash (const char *, unsigned int);
5457
#ifdef __GNUC__
5558
__inline
59+
#ifdef __GNUC_STDC_INLINE__
60+
__attribute__ ((__gnu_inline__))
61+
#endif
5662
#endif
5763
const char * libc_name_p (const char *, unsigned int);
5864
/* maximum key range = 391, duplicates = 0 */
5965

6066
#ifdef __GNUC__
6167
__inline
68+
#ifdef __GNUC_STDC_INLINE__
69+
__attribute__ ((__gnu_inline__))
70+
#endif
6271
#else
6372
#ifdef __cplusplus
6473
inline

0 commit comments

Comments
 (0)