> I think that just applies to <config.h> In general though, headers local
> to the program use "" and system or other installed headers use <>.
>
I haven't programmed in C for years but the rule at that times was:
- you use <> quoting if the file name is to be searched in the include path
- you use "" quoting if the file name is a pathname (absolute or relative,
mostly the later one).
So, <config.h> will be found in a usual configure ienv if the "." is
part of the include path. Otherwise not.
..................................................................... incze