diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-09-08 05:59:43 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-09-08 05:59:43 +0000 |
| commit | 4f44c1704766ca3fd52b0f2790d0e91af71d9181 (patch) | |
| tree | 04282446c3de315144bb4567bacf21dd7267e211 /process.c | |
| parent | 4c0edd6f111119ca2d4068d0ca43fe1aaf94e6cf (diff) | |
| download | ruby-4f44c1704766ca3fd52b0f2790d0e91af71d9181.tar.gz ruby-4f44c1704766ca3fd52b0f2790d0e91af71d9181.tar.xz ruby-4f44c1704766ca3fd52b0f2790d0e91af71d9181.zip | |
* merged a patch from Takahiro Kambe <taca@back-street.net> to
support DragonFly BSD. [ruby-dev:26984]
* object.c (rb_mod_cvar_get, rb_mod_cvar_set): document fix from
sheepman <sheepman@sheepman.sakura.ne.jp>; a bug in visibility
description. [ruby-dev:26965]
* sprintf.c (rb_f_sprintf): warn "too many argument" on verbose
mode (-v/-w); backported from 1.9. [ruby-dev:26963]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@9102 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'process.c')
| -rw-r--r-- | process.c | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -2055,7 +2055,6 @@ static VALUE p_uid_change_privilege(obj, id) VALUE obj, id; { - extern int errno; int uid; check_uid_switch(); @@ -2606,7 +2605,6 @@ static VALUE p_gid_change_privilege(obj, id) VALUE obj, id; { - extern int errno; int gid; check_gid_switch(); @@ -3133,7 +3131,6 @@ static VALUE p_uid_switch(obj) VALUE obj; { - extern int errno; int uid, euid; check_uid_switch(); @@ -3175,7 +3172,6 @@ static VALUE p_uid_switch(obj) VALUE obj; { - extern int errno; int uid, euid; check_uid_switch(); @@ -3246,7 +3242,6 @@ static VALUE p_gid_switch(obj) VALUE obj; { - extern int errno; int gid, egid; check_gid_switch(); @@ -3287,7 +3282,6 @@ static VALUE p_gid_switch(obj) VALUE obj; { - extern int errno; int gid, egid; check_gid_switch(); |
