mirror of
https://github.com/shadps4-emu/ext-SDL.git
synced 2024-11-27 20:10:50 +00:00
Fix use of _LARGEFILE64_SOURCE
This commit is contained in:
parent
4374645738
commit
49a8b16ffd
@ -28,7 +28,14 @@
|
||||
|
||||
/* Need this so Linux systems define fseek64o, ftell64o and off64_t */
|
||||
#ifndef _LARGEFILE64_SOURCE
|
||||
#ifndef __QNX__
|
||||
#define _LARGEFILE64_SOURCE
|
||||
#else
|
||||
/* QNX expects either _LARGEFILE64_SOURCE to be defined as a value or not at
|
||||
all.
|
||||
As the comment above says _LARGEFILE64_SOURCE is for Linux, should it be
|
||||
defined only if __LINUX__ is defined? */
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/* This is for a variable-length array at the end of a struct:
|
||||
|
Loading…
Reference in New Issue
Block a user