On 2004-01-02, Matthew Wilcox wrote: > Now that I look into it, wxwindows is the culprit because the idiots > define off_t *themselves*! Look at /usr/include/wx/filefn.h : > > // define off_t > #if !defined(__WXMAC__) || defined(__UNIX__) > #include <sys/types.h> > #else > typedef long off_t; > #endif
Argh! But the result is correct. 'typedef long off_t' gives the same result as including <sys/types.h> and it does not explain why the binaries used a 'typedef long long off_t'. Torsten

