﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
11	gccのキーワード、代替キーワードが現れるとエラーになる	kominami		"gccのキーワード、代替キーワードが現れるとエラーになる

例：Linux(Fedora 7)の/usr/include/stdint.hでの定義

# if __WORDSIZE == 64
typedef long int		int64_t;
# else
__extension__
typedef long long int		int64_t;
# endif

プリプロセス処理した結果
__extension__
typedef long long int		int64_t;


関数プロトタイプ宣言中の引数の型にキーワード、代替キーワードが現れると、エラーになる

キーワードの例
__attribute__
__extension__
__nothrow__
__const
__nonnull__
__restrict

"	defect	new	major		未整理（旧）				
