Changeset 257 for trunk/thune/unix
- Timestamp:
- 08/28/06 15:52:42 (2 years ago)
- Location:
- trunk/thune/unix
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/thune/unix/os.c
r248 r257 18 18 ===========================================================================*/ 19 19 20 21 #define _LARGEFILE64_SOURCE 1 22 #define _FILE_OFFSET_BITS 64 // off_t becomes 8 bytes. 20 23 21 24 #include <sys/types.h> … … 96 99 Returns -1 if not present. 97 100 */ 98 intur_fileSize( const char* path )101 long long ur_fileSize( const char* path ) 99 102 { 100 103 struct stat buf; -
trunk/thune/unix/os.h
r19 r257 61 61 #endif 62 62 63 extern intur_fileSize( const char* path );63 extern long long ur_fileSize( const char* path ); 64 64 extern void ur_installExceptionHandlers(); 65 65
