From 39e297df3c5f01326e55c61fbcb145cdb0695c19 Mon Sep 17 00:00:00 2001 From: akr Date: Tue, 7 Dec 2004 06:44:42 +0000 Subject: * io.c (io_fwrite): avoid context switch before writing to stderr. [ruby-dev:25080] * rubyio.h: refine deprecated declaration. * configure.in, file.c, io.c: remove useless check: fseeko, etc. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7490 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- file.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'file.c') diff --git a/file.c b/file.c index 2555e7032..5acdc6365 100644 --- a/file.c +++ b/file.c @@ -67,9 +67,6 @@ char *strrchr _((const char*,const char)); #ifndef HAVE_LSTAT #define lstat(path,st) stat(path,st) #endif -#if !HAVE_FSEEKO && !defined(fseeko) -# define fseeko fseek -#endif VALUE rb_cFile; VALUE rb_mFileTest; -- cgit