Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Libretro
flycast
Commits
190a2582
Commit
190a2582
authored
Apr 12, 2021
by
Libretro-Admin
Browse files
(libnx) Work around lack of ftello/fseeko by just defaulting to
ftell/fseek for now
parent
1cdfd339
Pipeline
#19886
passed with stages
in 3 minutes and 43 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
core/deps/libchdr/include/libchdr/coretypes.h
View file @
190a2582
...
@@ -28,6 +28,9 @@ typedef int8_t INT8;
...
@@ -28,6 +28,9 @@ typedef int8_t INT8;
#elif defined(_LARGEFILE_SOURCE) && defined(_FILE_OFFSET_BITS) && _FILE_OFFSET_BITS == 64
#elif defined(_LARGEFILE_SOURCE) && defined(_FILE_OFFSET_BITS) && _FILE_OFFSET_BITS == 64
#define core_fseek fseeko64
#define core_fseek fseeko64
#define core_ftell ftello64
#define core_ftell ftello64
#elif defined(HAVE_LIBNX)
#define core_fseek fseek
#define core_ftell ftell
#else
#else
#define core_fseek fseeko
#define core_fseek fseeko
#define core_ftell ftello
#define core_ftell ftello
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment