i am getting errors when i compile my program. it says stat64_t not declared. similar for off64_t and lseek64_t I have included both <sys/types.h> <sys/stat.h> and other headers.
earlier i had a problem for uint64_t but i resolved it by including <stdint.h>
do i need to include any other header files... or do anythig else.. pls help thankx. ( using redhat 8.0 )
__________________________________ Do you Yahoo!? Protect your identity with Yahoo! Mail AddressGuard http://antispam.yahoo.com/whatsnewfree
Sometime on Jan 5, Linux User assembled some asciibets to say:
i am getting errors when i compile my program. it says stat64_t not declared.
I have never come across these data structures. where are they supposed to be from? struct stat, off_t, etc are all in sys/types.h, but the ones you have mentioned don't exist anywhere on my system.
maybe try this:
grep -r "<stat64_t>" /usr/include/
Philip