diff options
Diffstat (limited to 'gcc/hooks.c')
-rw-r--r-- | gcc/hooks.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gcc/hooks.c b/gcc/hooks.c index 508e29c3f00..0eb0e149ec6 100644 --- a/gcc/hooks.c +++ b/gcc/hooks.c @@ -54,3 +54,11 @@ hook_tree_int_void (a, b) int b ATTRIBUTE_UNUSED; { } + +/* Generic hook that takes (FILE *, const char *) and does nothing. */ +void +hook_FILEptr_constcharptr_void (a, b) + FILE *a ATTRIBUTE_UNUSED; + const char *b ATTRIBUTE_UNUSED; +{ +} |