Date: Thu, 4 Nov 1999 09:11:20 +0200 (IST) From: Eli Zaretskii X-Sender: eliz AT is To: Gecko23 , Joe Heafner cc: djgpp AT delorie DOT com Subject: Re: can't find DJGPP header files in MingW32 In-Reply-To: <7vprq4$5g2$1@nnrp1.deja.com> 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 Wed, 3 Nov 1999, Gecko23 wrote: > > I recently wrote some software that uses sys/param.h and in.h with > DJGPP. I > > Use the ones from DJGPP. IMHO, this is bad advice. One shouldn't use a header from another compiler, since the headers are private to the library implementation. A better way would be to rewrite the program so that it doesn't use non-standard headers. In particular, sys/param.h should not be used by anything but legacy Unix software. Every symbol it defines has a modern and portable replacement.