#ifndef INCLUDED_PCH_STDLIB #define INCLUDED_PCH_STDLIB #if !MINIMAL_PCH // all new-form C library headers #include #include #include #include //#include // defines e.g. "and" to "&". unnecessary and causes trouble with asm. #include #include #include //#include // incompatible with libpng on Debian/Ubuntu #include #include #include #include #include #include #include #include #include #endif // !MINIMAL_PCH #if MINIMAL_PCH < 2 // common C++98 STL headers #include #include #endif #if MINIMAL_PCH < 3 // all other C++98 STL headers #include #include #include #include #include #include #include #include #include #include #include #endif #if !MINIMAL_PCH // all other C++98 headers #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #endif // !MINIMAL_PCH #if !MINIMAL_PCH // STL extensions #if GCC_VERSION >= 402 // (see comment in stl.h about GCC versions) # include # include #elif GCC_VERSION # include # include #else # include # include #endif #endif // !MINIMAL_PCH #endif // #ifndef INCLUDED_PCH_STDLIB