blob: 0186b942feb6a06d2c837ccd850086459cc786c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/*
** compar.c - Comparable module
**
** See Copyright Notice in mruby.h
*/
#include "mruby.h"
void
mrb_init_comparable(mrb_state *mrb)
{
mrb_define_module(mrb, "Comparable"); /* 15.3.3 */
}
|