diff options
| author | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-01-08 02:21:28 +0000 |
|---|---|---|
| committer | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-01-08 02:21:28 +0000 |
| commit | 416f20480835a2bcb5ce5547e091cf5f1c05fba3 (patch) | |
| tree | 9111deb368920221fce9b02fd705eafc6d6249b2 /process.c | |
| parent | 0141c6651565d1d3f28580d4cec8b70d0f46d769 (diff) | |
| download | ruby-416f20480835a2bcb5ce5547e091cf5f1c05fba3.tar.gz ruby-416f20480835a2bcb5ce5547e091cf5f1c05fba3.tar.xz ruby-416f20480835a2bcb5ce5547e091cf5f1c05fba3.zip | |
* eval.c, object.c, process.c, re.c: don't use C++ style comments.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5412 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'process.c')
| -rw-r--r-- | process.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -3332,10 +3332,10 @@ Init_process() rb_define_singleton_method(rb_mProcess, "fork", rb_f_fork, 0); rb_define_singleton_method(rb_mProcess, "exit!", rb_f_exit_bang, -1); - rb_define_singleton_method(rb_mProcess, "exit", rb_f_exit, -1); // in eval.c - rb_define_singleton_method(rb_mProcess, "abort", rb_f_abort, -1); // in eval.c + rb_define_singleton_method(rb_mProcess, "exit", rb_f_exit, -1); /* in eval.c */ + rb_define_singleton_method(rb_mProcess, "abort", rb_f_abort, -1); /* in eval.c */ - rb_define_module_function(rb_mProcess, "kill", rb_f_kill, -1); // in signal.c + rb_define_module_function(rb_mProcess, "kill", rb_f_kill, -1); /* in signal.c */ rb_define_module_function(rb_mProcess, "wait", proc_wait, -1); rb_define_module_function(rb_mProcess, "wait2", proc_wait2, -1); rb_define_module_function(rb_mProcess, "waitpid", proc_wait, -1); |
