Date: Mon, 20 Jan 2003 00:13:22 -0500 Message-Id: <200301200513.h0K5DMp27593@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: (lars.o.hansen@gmx.de) Subject: Re: several questions (symify, dynamic labels, cpu clock) References: 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 > is there no function ltoa (long int to alphanumeric) in djgpps C > (standard) library? Integers and longs are the same size in djgpp. You can use itoa. Or you can use sprintf.