diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 4 | ||||
-rw-r--r-- | include/ttyio.h | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index aa0cba88a..98acf86aa 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,7 @@ +2010-09-28 Werner Koch <[email protected]> + + * ttyio.h (ttyfp_is, init_ttyfp) [__VMS]: New. + 2009-09-03 Werner Koch <[email protected]> * util.h (xtryvasprintf): New. diff --git a/include/ttyio.h b/include/ttyio.h index b4fa03da5..2bd2b3ff3 100644 --- a/include/ttyio.h +++ b/include/ttyio.h @@ -43,6 +43,11 @@ void tty_kill_prompt(void); int tty_get_answer_is_yes( const char *prompt ); int tty_no_terminal(int onoff); +#ifdef __VMS +FILE *ttyfp_is (void); +void init_ttyfp (void); +#endif /*__VMS*/ + #ifdef HAVE_LIBREADLINE void tty_enable_completion(rl_completion_func_t *completer); void tty_disable_completion(void); |