diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2009-06-24 14:35:53 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2009-06-24 14:35:53 +0000 |
commit | f9eda378d2fa2f0444a5f8260f0e761de8dd7a50 (patch) | |
tree | 3bb9dce1a8da79ebacc24e870bb353f7cb3cc1e3 /gnu | |
parent | 8d5f78e967ffc3a4109902a3a2fd94a1a074ad12 (diff) |
Correct the prototype of ffecom_gfrt_basictype() to match the
function, this change was made in the 3.4.0 release of gcc.
ok deraadt@
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/egcs/gcc/f/com.h | 2 | ||||
-rw-r--r-- | gnu/usr.bin/gcc/gcc/f/com.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gnu/egcs/gcc/f/com.h b/gnu/egcs/gcc/f/com.h index baa29533288..c2e8c3e77cc 100644 --- a/gnu/egcs/gcc/f/com.h +++ b/gnu/egcs/gcc/f/com.h @@ -310,7 +310,7 @@ void ffecom_finish_decl (tree decl, tree init, bool is_top_level); void ffecom_finish_progunit (void); tree ffecom_get_invented_identifier (const char *pattern, const char *text, int number); -ffeinfoKindtype ffecom_gfrt_basictype (ffecomGfrt ix); +ffeinfoBasictype ffecom_gfrt_basictype (ffecomGfrt ix); ffeinfoKindtype ffecom_gfrt_kindtype (ffecomGfrt ix); void ffecom_init_0 (void); void ffecom_init_2 (void); diff --git a/gnu/usr.bin/gcc/gcc/f/com.h b/gnu/usr.bin/gcc/gcc/f/com.h index b58e5ba1205..baba53c7899 100644 --- a/gnu/usr.bin/gcc/gcc/f/com.h +++ b/gnu/usr.bin/gcc/gcc/f/com.h @@ -233,7 +233,7 @@ void ffecom_finish_decl (tree decl, tree init, bool is_top_level); void ffecom_finish_progunit (void); tree ffecom_get_invented_identifier (const char *pattern, ...) ATTRIBUTE_PRINTF_1; -ffeinfoKindtype ffecom_gfrt_basictype (ffecomGfrt ix); +ffeinfoBasictype ffecom_gfrt_basictype (ffecomGfrt ix); ffeinfoKindtype ffecom_gfrt_kindtype (ffecomGfrt ix); void ffecom_init_0 (void); void ffecom_init_2 (void); |