From f777225e09bcee89197f3a69739103f230881e27 Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 14 Apr 2011 12:21:04 +0000 Subject: * include/ruby/win32.h (ftruncate, truncate): mingw64 misses prototypes. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31277 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- include/ruby/win32.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/ruby') diff --git a/include/ruby/win32.h b/include/ruby/win32.h index f9dadb222e..cafd7de85f 100644 --- a/include/ruby/win32.h +++ b/include/ruby/win32.h @@ -384,13 +384,13 @@ scalb(double a, long b) #if !defined HAVE_FTRUNCATE || defined(_MSC_VER) #define ftruncate rb_w32_ftruncate -extern int rb_w32_ftruncate(int fd, off_t length); #endif +extern int ftruncate(int fd, off_t length); #if !defined HAVE_TRUNCATE || defined(_MSC_VER) #define truncate rb_w32_truncate -extern int rb_w32_truncate(const char *path, off_t length); #endif +extern int truncate(const char *path, off_t length); extern int fseeko(FILE *stream, off_t offset, int whence); -- cgit v1.2.3