From 95423b857d81d81f7071d00a51b812cf474cfab6 Mon Sep 17 00:00:00 2001 From: akr Date: Mon, 26 May 2008 15:52:22 +0000 Subject: * process.c (proc_getpgrp): rdoc enabled. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@16616 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- process.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/process.c b/process.c index fa45829196..642c5982a6 100644 --- a/process.c +++ b/process.c @@ -1632,6 +1632,10 @@ rb_f_sleep(argc, argv) } +#if defined(SIGCLD) && !defined(SIGCHLD) +# define SIGCHLD SIGCLD +#endif + /* * call-seq: * Process.getpgrp => integer @@ -1643,10 +1647,6 @@ rb_f_sleep(argc, argv) * Process.getpgrp #=> 25527 */ -#if defined(SIGCLD) && !defined(SIGCHLD) -# define SIGCHLD SIGCLD -#endif - static VALUE proc_getpgrp() { -- cgit v1.2.3