From 8b3db1a0cf78a47bbd1ac74d84a37d98838f864a Mon Sep 17 00:00:00 2001 From: Tomasz Konojacki Date: Thu, 29 Oct 2020 18:58:10 +0100 Subject: win32: remove support for disabling USE_LARGE_FILES It was enabled by default on all compilers. I don't think it ever makes sense to disable it. --- dosish.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'dosish.h') diff --git a/dosish.h b/dosish.h index 5b2716046d..1860a0f066 100644 --- a/dosish.h +++ b/dosish.h @@ -70,11 +70,7 @@ * to include and to get any typedef'ed * information. */ -#if defined(WIN64) || defined(USE_LARGE_FILES) -# define Stat_t struct _stati64 -#else -# define Stat_t struct stat -#endif +#define Stat_t struct _stati64 /* USE_STAT_RDEV: * This symbol is defined if this system has a stat structure declaring -- cgit v1.2.1