What to change in the Pacific C distribution:

+ Add the files within .\INCLUDE into your PAC include directory.
	They just offer those filenames to be inlcuded.

+ None of the header files can be recursively included. This causes
errors because of multiple declared types. To prevent this, add hte following
prolog and epilog to each header file, although, one could imagine cases
in which this will fail, I haven't encountered problems so far.

Prolog:
#ifndef <filename>_H__
#define <filename>_H__

Epilog:
#endif

Just substitude <filename> by the file's name.

