Date: Wed, 10 Sep 1997 12:03:30 +0300 (IDT) From: Eli Zaretskii To: "M. Schulter" cc: djgpp AT delorie DOT com Subject: Re: long long int in DJGPP? In-Reply-To: <5v525j$749$1@vnetnews.value.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Precedence: bulk On 10 Sep 1997, M. Schulter wrote: > #include > int main(void) > { > long long int _n0 = 1222333444555LL; > printf("\n\nNow _n0 = %lli.\n\n",_n0); > return(0); > } This program compiles for me and prints "1222333444555", as you'd expect. I also don't see any complaints from GCC (with -Wall). What version of DJGPP do you have? Is it 2.01 or 2.0? In any case, it is a good idea to add -v to the gcc command line and post everything it prints here.