mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ext/readline/readline.c: libedit is missing declaration of
rl_getc. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28631 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
afbd5661a0
commit
2dbc92b07d
2 changed files with 9 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
Tue Jul 13 21:34:17 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* ext/readline/readline.c: libedit is missing declaration of
|
||||
rl_getc.
|
||||
|
||||
Tue Jul 13 21:31:15 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* process.c (rb_daemon): split from proc_daemon.
|
||||
|
|
|
@ -108,6 +108,10 @@ static char **readline_attempted_completion_function(const char *text,
|
|||
static VALUE readline_instream;
|
||||
static ID id_getbyte;
|
||||
|
||||
#ifdef HAVE_EDITLINE_READLINE_H
|
||||
extern int rl_getc(FILE *);
|
||||
#endif
|
||||
|
||||
static int readline_getc(FILE *);
|
||||
static int
|
||||
readline_getc(FILE *input)
|
||||
|
|
Loading…
Add table
Reference in a new issue