mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
15 lines
310 B
C
15 lines
310 B
C
#include "ruby.h"
|
|
#include "internal/time.h"
|
|
|
|
static VALUE
|
|
bug_time_s_reset_leap_second_info(VALUE klass)
|
|
{
|
|
ruby_reset_leap_second_info();
|
|
return Qnil;
|
|
}
|
|
|
|
void
|
|
Init_time_leap_second(VALUE klass)
|
|
{
|
|
rb_define_singleton_method(klass, "reset_leap_second_info", bug_time_s_reset_leap_second_info, 0);
|
|
}
|