Path: utzoo!attcan!uunet!husc6!cmcl2!adm!smoke!gwyn From: gwyn@smoke.BRL.MIL (Doug Gwyn ) Newsgroups: comp.lang.c Subject: Re: #include search paths Message-ID: <8875@smoke.BRL.MIL> Date: 14 Nov 88 07:09:48 GMT References: <1866@loral.UUCP> <2899@ingr.UUCP> Reply-To: gwyn@brl.arpa (Doug Gwyn (VLD/VMB) ) Organization: Ballistic Research Lab (BRL), APG, MD. Lines: 14 In article <2899@ingr.UUCP> crossgl@ingr.UUCP (Gordon Cross) writes: >There seems to be some confusion between various documents I checked >regarding this. The details vary with the implementation; the intent does not. Use #include "file.h" when including a header source file that is part of the application source code. Use #include when including a header (n.b. not necessarily a file) provided by the C implementation, for example standard headers or headers for vendor-provided extensions. Do anything else and you're asking for portability problems.