Skip to content

Commit

Permalink
Use _fseeki64/_ftelli64 on win
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancescAlted committed Jan 29, 2025
1 parent ed53842 commit bf288ef
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion blosc/blosc2-stdio.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@

#if defined(_WIN32)
#include <memoryapi.h>
#define lseek _lseeki64
#define fseek _fseeki64
#define ftell _ftelli64
#else
#include <sys/mman.h>
#endif
Expand Down

0 comments on commit bf288ef

Please sign in to comment.