aboutsummaryrefslogtreecommitdiffstats
path: root/ext/pathname/pathname.c
blob: 36ad9c8708cc3b07d27eaa34bb1c2f2fce3a4831 (plain)
1
2
3
4
5
6
7
8
9
#include "ruby.h"

static VALUE rb_cPathname;

void
Init_pathname()
{
    rb_cPathname = rb_define_class("Pathname", rb_cObject);
}