Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 945643
Collapse All | Expand All

(-)a/include/ruby/io.h (-1 / +1 lines)
Lines 382-388 VALUE rb_io_open_descriptor(VALUE klass, int descriptor, int mode, VALUE path, V Link Here
382
 *
382
 *
383
 * @return Whether the underlying IO is closed.
383
 * @return Whether the underlying IO is closed.
384
 */
384
 */
385
VALUE rb_io_closed_p(VALUE io);
385
static VALUE rb_io_closed_p(VALUE io);
386
386
387
/**
387
/**
388
 * Queries the underlying IO pointer.
388
 * Queries the underlying IO pointer.
(-)a/include/ruby/re.h (-1 / +1 lines)
Lines 146-152 regex_t *rb_reg_prepare_re(VALUE re, VALUE str); Link Here
146
 * _conflicts_ with POSIX's  `<regex.h>`.  We can no longer  save the situation
146
 * _conflicts_ with POSIX's  `<regex.h>`.  We can no longer  save the situation
147
 * at this point.  Just don't mix the two.
147
 * at this point.  Just don't mix the two.
148
 */
148
 */
149
OnigPosition rb_reg_onig_match(VALUE re, VALUE str,
149
static OnigPosition rb_reg_onig_match(VALUE re, VALUE str,
150
                               OnigPosition (*match)(regex_t *reg, VALUE str, struct re_registers *regs, void *args),
150
                               OnigPosition (*match)(regex_t *reg, VALUE str, struct re_registers *regs, void *args),
151
                               void *args, struct re_registers *regs);
151
                               void *args, struct re_registers *regs);
152
152
(-)a/io.c (-1 / +1 lines)
Lines 5832-5838 io_close(VALUE io) Link Here
5832
 *
5832
 *
5833
 *  Related: IO#close_read, IO#close_write, IO#close.
5833
 *  Related: IO#close_read, IO#close_write, IO#close.
5834
 */
5834
 */
5835
VALUE
5835
static VALUE
5836
rb_io_closed_p(VALUE io)
5836
rb_io_closed_p(VALUE io)
5837
{
5837
{
5838
    rb_io_t *fptr;
5838
    rb_io_t *fptr;
(-)a/re.c (-2 / +1 lines)
Lines 1651-1657 rb_reg_prepare_re(VALUE re, VALUE str) Link Here
1651
    return reg;
1651
    return reg;
1652
}
1652
}
1653
1653
1654
OnigPosition
1654
static OnigPosition
1655
rb_reg_onig_match(VALUE re, VALUE str,
1655
rb_reg_onig_match(VALUE re, VALUE str,
1656
                  OnigPosition (*match)(regex_t *reg, VALUE str, struct re_registers *regs, void *args),
1656
                  OnigPosition (*match)(regex_t *reg, VALUE str, struct re_registers *regs, void *args),
1657
                  void *args, struct re_registers *regs)
1657
                  void *args, struct re_registers *regs)
1658
- 

Return to bug 945643