mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
67de10bfcb
According to CONTRIBUTING.md, Don't use C++ style comments /* This is the prefered comment style */ Use C++ style comments only for temporary comment e.g. commenting out some code lines.
13 lines
164 B
C
13 lines
164 B
C
/*
|
|
** random.h - Random module
|
|
**
|
|
** See Copyright Notice in mruby.h
|
|
*/
|
|
|
|
#ifndef RANDOM_H
|
|
#define RANDOM_H
|
|
|
|
void mrb_mruby_random_gem_init(mrb_state *mrb);
|
|
|
|
#endif
|