Date: Tue, 13 Apr 1999 12:32:31 +0300 (IDT) From: Eli Zaretskii X-Sender: eliz AT is To: Tim Updegrove cc: djgpp AT delorie DOT com Subject: Re: Missing header file In-Reply-To: <3712a042.8670421@news.enter.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Tue, 13 Apr 1999, Tim Updegrove wrote: > Is there a simple way to keep the header files with the program > files? Yes, you need to include them like this: #include "foo.h" rather then like this: #include The latter instructs the compiler to look ONLY in the system include directories; the former looks in the directory of the source file first.