From fc6402829157928e66019ebca577d51fecf8d179 Mon Sep 17 00:00:00 2001 From: akr Date: Mon, 22 Jun 2009 12:23:06 +0000 Subject: * io.c: remove __CHECKER__ test. * dir.c: ditto. * dln.c: ditto. * file.c: ditto. * process.c: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23819 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- file.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'file.c') diff --git a/file.c b/file.c index 0b1eef2a79..b1678b9049 100644 --- a/file.c +++ b/file.c @@ -2030,7 +2030,7 @@ rb_file_chown(VALUE obj, VALUE owner, VALUE group) return INT2FIX(0); } -#if defined(HAVE_LCHOWN) && !defined(__CHECKER__) +#if defined(HAVE_LCHOWN) static void lchown_internal(const char *path, void *arg) { @@ -3567,7 +3567,6 @@ rb_thread_flock(void *data) static VALUE rb_file_flock(VALUE obj, VALUE operation) { -#ifndef __CHECKER__ rb_io_t *fptr; int op[2], op1; @@ -3601,7 +3600,6 @@ rb_file_flock(VALUE obj, VALUE operation) rb_sys_fail_path(fptr->pathv); } } -#endif return INT2FIX(0); } #undef flock -- cgit v1.2.3