enable document of Kernel#system.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14528 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2007-12-23 15:39:09 +00:00
Родитель e615f0ec42
Коммит cd047935e4
1 изменённых файлов: 5 добавлений и 4 удалений

Просмотреть файл

@ -1777,14 +1777,15 @@ rb_spawn(int argc, VALUE *argv)
* *
*/
#if defined(SIGCLD) && !defined(SIGCHLD)
# define SIGCHLD SIGCLD
#endif
static VALUE
rb_f_system(int argc, VALUE *argv)
{
int status;
#if defined(SIGCLD) && !defined(SIGCHLD)
# define SIGCHLD SIGCLD
#endif
#ifdef SIGCHLD
RETSIGTYPE (*chfunc)(int);