From b55e3c11dca4cf890df42cfc37f472b010dd72d5 Mon Sep 17 00:00:00 2001 From: Cary R Date: Thu, 30 Aug 2007 15:39:46 -0700 Subject: [PATCH] mingw needs fseeko/ftello redefinitions in lxt_write.h These redefinitions were in lxt2_write.h, but missing in lxt_write.h. This patch adds them to lxt_write.h. --- vpi/lxt_write.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/vpi/lxt_write.h b/vpi/lxt_write.h index f017a4d98..6a2ea50b2 100644 --- a/vpi/lxt_write.h +++ b/vpi/lxt_write.h @@ -32,6 +32,11 @@ #include #include +#if defined _MSC_VER || defined __MINGW32__ +#define fseeko fseek +#define ftello ftell +#endif + typedef struct dslxt_tree_node dslxt_Tree; struct dslxt_tree_node {