mirror of
https://github.com/ruby/ruby.git
synced 2026-01-27 04:24:23 +00:00
24 lines
519 B
C
24 lines
519 B
C
/* -*- 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)
|
|
{
|
|
}
|