diff options
author | Tom Tromey <tom@tromey.com> | 2017-04-26 22:03:42 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2017-08-03 07:58:56 -0600 |
commit | fad0444a57f4715c1afc9b0331014374e6faccb6 (patch) | |
tree | 051bc584f9dda1dd2973ccc5a29d17f6b0a94922 /gdb/utils.h | |
parent | 6e7bc05c53fe65089f290757a72508356b491a6f (diff) | |
download | gdb-fad0444a57f4715c1afc9b0331014374e6faccb6.zip gdb-fad0444a57f4715c1afc9b0331014374e6faccb6.tar.gz gdb-fad0444a57f4715c1afc9b0331014374e6faccb6.tar.bz2 |
Remove make_cleanup_fclose
After the preceding patches, make_cleanup_fclose is no longer used, so
remove it.
ChangeLog
2017-08-03 Tom Tromey <tom@tromey.com>
* utils.h (make_cleanup_fclose): Remove.
* utils.c (do_fclose_cleanup, make_cleanup_fclose): Remove.
Diffstat (limited to 'gdb/utils.h')
-rw-r--r-- | gdb/utils.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gdb/utils.h b/gdb/utils.h index 48330a1..a6709c0 100644 --- a/gdb/utils.h +++ b/gdb/utils.h @@ -101,8 +101,6 @@ extern struct cleanup *(make_cleanup_free_section_addr_info /* For make_cleanup_close see common/filestuff.h. */ -extern struct cleanup *make_cleanup_fclose (FILE *file); - extern struct cleanup *make_cleanup_restore_integer (int *variable); extern struct cleanup *make_cleanup_restore_uinteger (unsigned int *variable); |