Say I want to compile a project with -std=c++0x, but I want a library such as stdio.h to be included from anything pre-c++0x. It seems functions like fdopen are not available in c++0x.
Is it possible to include a C++ library from an earlier standard?