diff options
author | Mark Mitchell <mark@codesourcery.com> | 2005-06-14 15:40:06 +0000 |
---|---|---|
committer | Mark Mitchell <mark@codesourcery.com> | 2005-06-14 15:40:06 +0000 |
commit | 56fd9a33d8e0e064a7e4f71a94e94db616947396 (patch) | |
tree | 84a491d86703ce5c79d8b2a9023dff651a7bf3a9 | |
parent | 53240358b8b1aa087c597a4b99393e13051290f9 (diff) | |
download | gdb-56fd9a33d8e0e064a7e4f71a94e94db616947396.zip gdb-56fd9a33d8e0e064a7e4f71a94e94db616947396.tar.gz gdb-56fd9a33d8e0e064a7e4f71a94e94db616947396.tar.bz2 |
* readline/rlnotty.c (tgoto): New function.
-rw-r--r-- | ChangeLog.csl | 4 | ||||
-rw-r--r-- | readline/rlnotty.c | 9 |
2 files changed, 13 insertions, 0 deletions
diff --git a/ChangeLog.csl b/ChangeLog.csl index e25bae6..e52c85b 100644 --- a/ChangeLog.csl +++ b/ChangeLog.csl @@ -1,3 +1,7 @@ +2005-06-14 Mark Mitchell <mark@codesourcery.com> + + * readline/rlnotty.c (tgoto): New function. + 2005-06-13 Mark Mitchell <mark@codesourcery.com> * gdb/corelow.c (core_open): Use bfd_fopen, not bfd_fdopenr. diff --git a/readline/rlnotty.c b/readline/rlnotty.c index 4bde1c0..dc3d021 100644 --- a/readline/rlnotty.c +++ b/readline/rlnotty.c @@ -51,6 +51,15 @@ tputs (string, nlines, outfun) outfun (*string++); } +char * +tgoto (cap, col, row) + const char *cap; + int col; + int row; +{ + return NULL; +} + int _rl_disable_tty_signals () { |