flat_include

Controls whether or not to ignore relative path names in #include directives.

Syntax
  #pragma flat_include on | off | reset  
Remarks

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.