1
0
Fork 0
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:
nobu 2010-07-13 12:34:19 +00:00
parent afbd5661a0
commit 2dbc92b07d
2 changed files with 9 additions and 0 deletions

View file

@ -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.

View file

@ -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)