Date: Mon, 3 Aug 1998 16:40:33 +0300 (IDT) From: Eli Zaretskii To: Arthur cc: DJGPP Mailing List Subject: RE: How to make DJGPP treat an int as 16-bit in size. In-Reply-To: <000001bdbed0$515d83c0$e14e08c3@arthur> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Precedence: bulk On Mon, 3 Aug 1998, Arthur wrote: > To have portable code it is common practice not to use "int" but long > (or short, depending on your compiler). More accurately, use int where its size doesn't matter and you want the fastest code, and short/long where the size matters.