diff options
author | kan <kan@FreeBSD.org> | 2003-02-10 05:58:19 +0000 |
---|---|---|
committer | kan <kan@FreeBSD.org> | 2003-02-10 05:58:19 +0000 |
commit | 9bbf1e7a3bb2614963bc1eea56f940e115b0f3fd (patch) | |
tree | e12775b48403ada1378fa41528cacd93d4982ab5 /contrib/gcc/c-common.h | |
parent | bb9b382fea4fa3d2fe33c4a9d966b363347afcef (diff) | |
download | FreeBSD-src-9bbf1e7a3bb2614963bc1eea56f940e115b0f3fd.zip FreeBSD-src-9bbf1e7a3bb2614963bc1eea56f940e115b0f3fd.tar.gz |
Merge FreeBSD modifications into gcc 3.2.2 release:
1.2 framework for our kernel printf enhancements.
1.3 suppress prototype warnings on K&R main.
Diffstat (limited to 'contrib/gcc/c-common.h')
-rw-r--r-- | contrib/gcc/c-common.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/contrib/gcc/c-common.h b/contrib/gcc/c-common.h index c612818..428a23b 100644 --- a/contrib/gcc/c-common.h +++ b/contrib/gcc/c-common.h @@ -138,10 +138,6 @@ enum c_tree_index CTI_SIGNED_WCHAR_TYPE, CTI_UNSIGNED_WCHAR_TYPE, CTI_WINT_TYPE, - CTI_C_SIZE_TYPE, /* The type used for the size_t typedef and the - result type of sizeof (an ordinary type without - TYPE_IS_SIZETYPE set, unlike the internal - sizetype). */ CTI_SIGNED_SIZE_TYPE, /* For format checking only. */ CTI_UNSIGNED_PTRDIFF_TYPE, /* For format checking only. */ CTI_INTMAX_TYPE, @@ -195,7 +191,6 @@ struct c_common_identifier #define signed_wchar_type_node c_global_trees[CTI_SIGNED_WCHAR_TYPE] #define unsigned_wchar_type_node c_global_trees[CTI_UNSIGNED_WCHAR_TYPE] #define wint_type_node c_global_trees[CTI_WINT_TYPE] -#define c_size_type_node c_global_trees[CTI_C_SIZE_TYPE] #define signed_size_type_node c_global_trees[CTI_SIGNED_SIZE_TYPE] #define unsigned_ptrdiff_type_node c_global_trees[CTI_UNSIGNED_PTRDIFF_TYPE] #define intmax_type_node c_global_trees[CTI_INTMAX_TYPE] |