Date: Mon, 11 Nov 2002 21:07:09 -0500 Message-Id: <200211120207.gAC279N20655@envy.delorie.com> X-Authentication-Warning: envy.delorie.com: dj set sender to dj AT delorie DOT com using -f From: DJ Delorie To: djgpp AT delorie DOT com In-reply-to: (cwg01@netzero.net) Subject: Re: FAQ Question, I know. References: <200211110445 DOT gAB4jAx06573 AT envy DOT delorie DOT com> <200211111500 DOT gABF0LV12989 AT envy DOT delorie DOT com> Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk > So if I were to include say, getpagesize.h, for example, I would really have > to use the 8.3 equivalent when making the adjustment to the strictly DOS > environment. A pitfall to watch out for. Nope. If your program tries to open getpagesize.h on an 8.3 machine, you'll automatically get getpages.h. The problems happen when you have *two* files that would have the *same* 8.3 name, like getpagesize.h and getpagespeed.h. Or when you try to use a file that has 8.3-illegal characters, like "some file.h", or that differ only in case, like string.h and String.h. More pitfalls: http://www.delorie.com/djgpp/doc/pitfalls.html