diff options
Diffstat (limited to 'include/gdb/callback.h')
-rw-r--r-- | include/gdb/callback.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/gdb/callback.h b/include/gdb/callback.h index 2245c87dc..eb991f74e 100644 --- a/include/gdb/callback.h +++ b/include/gdb/callback.h @@ -315,8 +315,10 @@ int cb_host_to_target_stat PARAMS ((host_callback *, const struct stat *, PTR)); /* Translate a value to target endian. */ void cb_store_target_endian PARAMS ((host_callback *, char *, int, long)); -/* Test if the fd is stdin. */ +/* Tests for special fds. */ int cb_is_stdin PARAMS ((host_callback *, int)); +int cb_is_stdout PARAMS ((host_callback *, int)); +int cb_is_stderr PARAMS ((host_callback *, int)); /* Perform a system call. */ CB_RC cb_syscall PARAMS ((host_callback *, CB_SYSCALL *)); |