mirror of
https://github.com/DarkStore-3DS/Project_CTR.git
synced 2026-07-04 16:59:02 +00:00
[ctrtool] Fix compile errors
And comparisons which would have always returned false.
This commit is contained in:
+4
-2
@@ -46,8 +46,10 @@ inline int fseeko64(FILE *__stream, long long __off, int __whence)
|
||||
{
|
||||
return _fseeki64(__stream, __off, __whence);
|
||||
}
|
||||
#else
|
||||
extern int fseeko64 (FILE *__stream, off64_t __off, int __whence);
|
||||
#elif __APPLE__
|
||||
#define fseeko64 fseek // OS X file I/O is 64bit
|
||||
#elif __linux__
|
||||
extern int fseeko64 (FILE *__stream, __off64_t __off, int __whence);
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
||||
Reference in New Issue
Block a user