In Visual C++ you can create a 64 bit int like this...
long long int xyz;
But cant seem to do it in GNU C++ on Linux? I need to manage very large files, over 9 gigs, how can you get fstream to manage file pointers that are 64bits?
Any help appreciated.