13 lines
483 B
Diff
13 lines
483 B
Diff
--- gcc/c-decl.c.orig 2003-03-12 18:05:07.000000000 +0100
|
|
+++ gcc/c-decl.c 2003-03-12 18:07:18.000000000 +0100
|
|
@@ -3549,7 +3549,8 @@ grokdeclarator (declarator, declspecs, d
|
|
}
|
|
else if (specbits & (1 << (int) i))
|
|
{
|
|
- if (i == RID_CONST || i == RID_VOLATILE || i == RID_RESTRICT)
|
|
+ if (i == RID_CONST || i == RID_VOLATILE || i == RID_RESTRICT
|
|
+ || i == RID_INLINE)
|
|
{
|
|
if (!flag_isoc99)
|
|
pedwarn ("duplicate `%s'", IDENTIFIER_POINTER (id));
|