On Tuesday 29 November 2005 06:37 pm, Laurent R wrote: I'm a little rusty, but IIRC (maybe this is only C++?) if you specify:
#include "header.h" It will search the local paths first, then the system paths, whereas: #include <header.h> will search only system paths. Thus in your case: #include "time.h" // should find your application's time.h #include <time.h> // should find the system's time.h -- Respectfully, Nicholas Leippe Sales Team Automation, LLC 1335 West 1650 North, Suite C Springville, UT 84663 +1 801.853.4090 http://www.salesteamautomation.com /* PLUG: http://plug.org, #utah on irc.freenode.net Unsubscribe: http://plug.org/mailman/options/plug Don't fear the penguin. */
