ruby-changes:3036
From: ko1@a...
Date: 24 Dec 2007 00:39:15 +0900
Subject: [ruby-changes:3036] akr - Ruby:r14528 (trunk): enable document of Kernel#system.
akr 2007-12-24 00:39:09 +0900 (Mon, 24 Dec 2007) New Revision: 14528 Modified files: trunk/process.c Log: enable document of Kernel#system. http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/process.c?r1=14528&r2=14527 Index: process.c =================================================================== --- process.c (revision 14527) +++ process.c (revision 14528) @@ -1777,14 +1777,15 @@ * * */ +static VALUE +rb_f_system(int argc, VALUE *argv) +{ + int status; + #if defined(SIGCLD) && !defined(SIGCHLD) # define SIGCHLD SIGCLD #endif -static VALUE -rb_f_system(int argc, VALUE *argv) -{ - int status; #ifdef SIGCHLD RETSIGTYPE (*chfunc)(int); -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml