From d28c3fda3cde65e6a85d94da3f484ef2c097e312 Mon Sep 17 00:00:00 2001 From: kan Date: Mon, 10 Feb 2003 06:00:24 +0000 Subject: [PATCH] Merge FreeBSD modifications into gcc 3.2.2 release: 1.2 -fformat-extensions. 1.3 -printf0 1.6 Teach GCC about %y for DDB and implement support for the C99 %z format modifier. --- contrib/gcc/c-format.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/gcc/c-format.c b/contrib/gcc/c-format.c index c40e3ccbdca1..3834c5506305 100644 --- a/contrib/gcc/c-format.c +++ b/contrib/gcc/c-format.c @@ -754,7 +754,7 @@ static const format_flag_pair strfmon_flag_pairs[] = #define T_WI &wint_type_node #define T94_WI { STD_C94, "wint_t", T_WI } #define TEX_WI { STD_EXT, "wint_t", T_WI } -#define T_ST &c_size_type_node +#define T_ST &size_type_node #define T99_ST { STD_C99, "size_t", T_ST } #define T_SST &signed_size_type_node #define T99_SST { STD_C99, "signed size_t", T_SST }