summaryrefslogtreecommitdiff
path: root/include/ruby/win32.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/ruby/win32.h')
-rw-r--r--include/ruby/win32.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/ruby/win32.h b/include/ruby/win32.h
index 32de53f7ec..80842c3852 100644
--- a/include/ruby/win32.h
+++ b/include/ruby/win32.h
@@ -373,13 +373,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);