mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
14 lines
196 B
C
14 lines
196 B
C
/*
|
|
** 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 */
|
|
}
|