Controls whether or not to ignore relative path names in #include directives.
#pragma flat_include on | off | reset
For example, when on, the compiler converts this directive
#include <sys/stat.h>
to
#include <stat.h>
Use this pragma when porting source code from a different operating system, or when a CodeWarrior IDE project's access paths cannot reach a given file.
By default, this pragma is off.