blob: f7575191fedf2def334f670c28fa2a94c85786e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* -*- c-file-style: "ruby"; indent-tabs-mode: t -*- */
/**********************************************************************
io/wait.c -
$Author$
created at: Tue Aug 28 09:08:06 JST 2001
All the files in this distribution are covered under the Ruby's
license (see the file COPYING).
**********************************************************************/
#include "ruby.h" /* abi_version */
/*
* IO wait methods are built in ruby now, just for backward compatibility.
*/
void
Init_wait(void)
{
}
|