I've encountered this before. As far as I can tell, it is actually a bug in solaris's libc where they use an 8-bit unsigned integer type to store the fd in the FILE struct. Apparently they didn't change it very quickly in the name of backwards compatibility (in case a program for some reason was dependent on the implementation details of the FILE struct). This should NOT be an issue on Linux or any other non-solaris *nix. The article you cited suggested reasonable work aroundsworkarounds, so you should use those.
As for "what is a 64-bit executable", well it's just a binary which has been compiled for a 64-bit instruction set. Some architectures support both some don't. (For example x86-64 OSes typically allow for 32-bit processes for backwards compatibility).
