hi TI-friends,
as we know there's a upper limit when using standard c functions like open/write/read/fstat.
I try to get the size of a big file by using fstat64(), and I found that I can't declare as below due to compiling error
struct stat64 stat64_buf;
but I compile successfully as using open64/fstat64 which are also the standard c functions
Is there anything I miss??