From c67251edb478509b4abd9910e0b499a116112a3c Mon Sep 17 00:00:00 2001 From: matz Date: Mon, 7 Aug 2000 05:05:04 +0000 Subject: matz git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@876 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- file.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'file.c') diff --git a/file.c b/file.c index a5db21ddcc..85e82046e2 100644 --- a/file.c +++ b/file.c @@ -1022,7 +1022,7 @@ rb_file_chown(obj, owner, group) struct timeval rb_time_timeval(); -#ifdef HAVE_UTIMES +#if defined(HAVE_UTIMES) && !defined(__CHECKER__) static void utime_internal(path, tvp) @@ -1504,7 +1504,7 @@ rb_file_truncate(obj, len) # define LOCK_UN 8 # endif -#if defined(EWOULDBLOCK) +#if defined(EWOULDBLOCK) && 0 static int rb_thread_flock(fd, op, fptr) int fd, op; @@ -1535,6 +1535,7 @@ rb_file_flock(obj, operation) VALUE obj; VALUE operation; { +#ifndef __CHECKER__ OpenFile *fptr; rb_secure(2); @@ -1551,6 +1552,7 @@ rb_file_flock(obj, operation) #endif rb_sys_fail(fptr->path); } +#endif return INT2FIX(0); } #undef flock -- cgit v1.2.3