> Date: Sun, 9 Sep 2007 21:40:38 -0600 > From: "Philip Guenther" <[EMAIL PROTECTED]> > Cc: [email protected] > > In my experience, C > compilers in UNIX search the directory of the source file, whether or > not that directory is named in a -I option.
Only if you say `#include "foo.h"', not `#include <foo.h>'. The C standard specifies that "foo.h" is looked for in the current directory first. _______________________________________________ Help-make mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-make
