summaryrefslogtreecommitdiff
path: root/ext/-test-/time/leap_second.c
blob: ee7011fa97e983156fc7679f3eef48973f2dcab8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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);
}