Lyle, I am building an eCos application wtih Cygwin. It porting code from MS embedded C 5.1 to arm-elf-gcc using eCos. I added everything but the kitchen sink to the C library for eCos but these functions are not present. I was under the impression that this library was a reflection of glibc 2.2.3(or whatever was most current when the arm-elf version was released). I do see your point, but I have checked and double checked that the stdlib(where these functions should be??) are added to the library. So I suppose this is a question for the glibc help list or any other direction will be appreciated. Thanks Aaron -----Original Message----- From: lrtaylor@xxxxxxxxxx [mailto:lrtaylor@xxxxxxxxxx] Sent: Friday, September 12, 2003 1:34 PM To: aaron.case@xxxxxxxxxxxx; gcc-help@xxxxxxxxxxx Subject: RE: ltoa, itoa, ultoa in gcc This isn't necessarily going to answer your question, but whether or not they are supported has nothing to do with GCC. These are functions that would be in the C library, which is a system library rather than a compiler library. So, whether or not they are supported will depend on whether or not your C library supports them. And whether or not there are good alternatives will also depend on your C library. What platform are you trying to build on? Thanks, Lyle Taylor -----Original Message----- From: Aaron Case [mailto:aaron.case@xxxxxxxxxxxx] Sent: Friday, September 12, 2003 11:30 AM To: gcc-help@xxxxxxxxxxx Subject: ltoa, itoa, ultoa in gcc Hello, I am porting code from Microsoft C v5.1 that is not exactly ANSI standard. I thought that ltoa, itoa, and ultoa were standard but I see now that they are NOT ANSI standard. Do have to write these functions myself or is there something supported by GCC that will suffice?? Thanks in Advance Aaron Case