diff options
author | Steve Chamberlain <sac@cygnus> | 1995-09-20 15:37:50 +0000 |
---|---|---|
committer | Steve Chamberlain <sac@cygnus> | 1995-09-20 15:37:50 +0000 |
commit | cc274a2ecb8ab5f8b3f370e685f1a3994677d653 (patch) | |
tree | e40cc012c59e37b305c9d7bdc4089c9299d0489a /gdb/remote-sim.h | |
parent | 6b009ef680221bc7ad17d3fa2dc473ecfdf277d9 (diff) | |
download | gdb-cc274a2ecb8ab5f8b3f370e685f1a3994677d653.zip gdb-cc274a2ecb8ab5f8b3f370e685f1a3994677d653.tar.gz gdb-cc274a2ecb8ab5f8b3f370e685f1a3994677d653.tar.bz2 |
Wed Sep 20 08:16:03 1995 steve chamberlain <sac@slash.cygnus.com>
* defs.h (xmalloc, xrealloc): Delete, they're declared in libiberty.h.
(GETENV_PROVIDED, FCLOSE_PROVIDED): New.
* doc/gdbint.texinfo (GETENV_PROVIDED, FCLOSE_PROVIDED): Document.
* remote-sim.[ch] (sim_callback_write_stdout): New.
Diffstat (limited to 'gdb/remote-sim.h')
-rw-r--r-- | gdb/remote-sim.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/remote-sim.h b/gdb/remote-sim.h index 74f9809..aee9ab7 100644 --- a/gdb/remote-sim.h +++ b/gdb/remote-sim.h @@ -39,7 +39,7 @@ typedef CORE_ADDR_TYPE SIM_ADDR; void printf_filtered (char *msg, ...); void error /-* noreturn *-/ (char *msg, ...); void *xmalloc (long size); - int gdbsim_write_stdout (char *, int len); + int sim_callback_write_stdout (char *, int len); */ /* Main simulator entry points ... @@ -127,6 +127,6 @@ void sim_do_command PARAMS ((char *cmd)); /* Callbacks for the simulator to use. */ -int gdbsim_write_stdout PARAMS ((char *, int)); +int sim_callback_write_stdout PARAMS ((char *, int)); #endif /* !defined (REMOTE_SIM_H) */ |