mirror of
https://github.com/SciresM/hactool
synced 2024-11-22 12:03:11 +00:00
Fix missing underscore
This commit is contained in:
parent
04926319f4
commit
387e48a868
1 changed files with 1 additions and 1 deletions
2
utils.h
2
utils.h
|
@ -55,7 +55,7 @@ inline int fseeko64(FILE *__stream, long long __off, int __whence)
|
|||
// OS X file I/O is 64bit
|
||||
#define fseeko64 fseek
|
||||
#elif __linux__ || __WIN32
|
||||
extern int fseeko64 (FILE *__stream, _off64_t __off, int __whence);
|
||||
extern int fseeko64 (FILE *__stream, __off64_t __off, int __whence);
|
||||
#else
|
||||
/* fseeko is guaranteed by POSIX, hopefully the OS made their off_t definition 64-bit;
|
||||
* known sane on FreeBSD and OpenBSD.
|
||||
|
|
Loading…
Reference in a new issue