From c975b61043d2ab0d537ffff3293c3b10b69a5948 Mon Sep 17 00:00:00 2001 From: Josh Triplett Date: Tue, 22 May 2007 18:23:05 -0700 Subject: [PATCH] Move the ident for defined() into the preprocessor section. Signed-off-by: Josh Triplett --- ident-list.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ident-list.h b/ident-list.h index 01511092..6340f28d 100644 --- a/ident-list.h +++ b/ident-list.h @@ -38,7 +38,7 @@ IDENT_RESERVED(__sizeof_ptr__); IDENT_RESERVED(__builtin_types_compatible_p); /* Attribute names */ -IDENT(defined); IDENT(packed); IDENT(__packed__); +IDENT(packed); IDENT(__packed__); IDENT(aligned); IDENT(__aligned__); IDENT(nocast); IDENT(noderef); IDENT(safe); IDENT(force); IDENT(address_space); IDENT(context); IDENT(mode); @@ -78,6 +78,7 @@ IDENT(dllimport); IDENT(__dllimport__); IDENT(dllexport); IDENT(__dllexport__); /* Preprocessor idents */ +IDENT(defined); __IDENT(pragma_ident, "__pragma__", 0); __IDENT(__VA_ARGS___ident, "__VA_ARGS__", 0); __IDENT(__LINE___ident, "__LINE__", 0); -- 2.11.4.GIT