1
0
mirror of https://github.com/Tha14/toxic.git synced 2025-06-29 14:56:44 +02:00

use 64-bit off_t for file sizes

This commit is contained in:
Jfreegman
2014-09-24 14:23:08 -04:00
parent 893e88294b
commit a432d733d7
7 changed files with 9 additions and 9 deletions

View File

@ -113,6 +113,6 @@ void bytes_convert_str(char *buf, int size, uint64_t bytes);
bool file_exists(const char *path);
/* returns file size or -1 on error */
uint64_t file_size(const char *path);
off_t file_size(const char *path);
#endif /* #define MISC_TOOLS_H */