* 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
@ -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>
|
Tue Jul 13 21:31:15 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
* process.c (rb_daemon): split from proc_daemon.
|
* 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 VALUE readline_instream;
|
||||||
static ID id_getbyte;
|
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 *);
|
||||||
static int
|
static int
|
||||||
readline_getc(FILE *input)
|
readline_getc(FILE *input)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user