			Portability problems...

This is a summary of problems we run with portable code...

1. don't mix printf and cout...
	You should stay at one of the both otherwise msvc will get crazy. For
Planeshift use either CPrintf or the CS reporter.

2. don't forget libc headers... They could be included inderectly on your
system, for example I I can include <iostream.h> in linux and <stdio.h> is
included inderectly by iostream.h so it compiles for me... But on other systems
this won't work...

3. pay attention to filnames, because windows is non case sensitive while other
OSes are. For PS: just write all filenames in lowercase, and save them in
lowercase.

***Windows glitches:
-don't include windows.h multiple times

