diff options
Diffstat (limited to 'src/input/libdvdnav/vm.c')
-rw-r--r-- | src/input/libdvdnav/vm.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/input/libdvdnav/vm.c b/src/input/libdvdnav/vm.c index c4120916d..aaa254fe2 100644 --- a/src/input/libdvdnav/vm.c +++ b/src/input/libdvdnav/vm.c @@ -19,7 +19,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: vm.c,v 1.21 2003/04/29 21:55:53 jcdutton Exp $ + * $Id: vm.c,v 1.22 2003/05/26 23:11:44 miguelfreitas Exp $ * */ @@ -47,6 +47,11 @@ #define lseek64 lseek #endif /* _MSC_VER */ +#ifdef __CYGWIN__ +# define off64_t off_t +# define lseek64 lseek +#endif + /* #define STRICT */ |