From 4aef249a45d1db6b300baa0b8d24179802062928 Mon Sep 17 00:00:00 2001 From: Simon Marlow Date: Wed, 23 Jan 2008 13:12:48 +0000 Subject: [PATCH] add comment about lack of _chsize_s() --- include/HsBase.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/HsBase.h b/include/HsBase.h index 7fae68a..4128197 100644 --- a/include/HsBase.h +++ b/include/HsBase.h @@ -406,6 +406,9 @@ __hscore_ftruncate( int fd, off_t where ) #elif defined(HAVE__CHSIZE) return _chsize(fd,where); #else +// ToDo: we should use _chsize_s() on Windows which allows a 64-bit +// offset, but it doesn't seem to be available from mingw at this time +// --SDM (01/2008) #error at least ftruncate or _chsize functions are required to build #endif } -- 1.7.10.4