mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
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:
parent
e615f0ec42
commit
cd047935e4
1 changed files with 5 additions and 4 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue