From: Martin Str|mberg Subject: Re: I need snprintf Newsgroups: comp.os.msdos.djgpp References: User-Agent: tin/1.4.4-20000803 ("Vet for the Insane") (UNIX) (NetBSD/1.5_BETA (alpha)) Message-ID: <1041862906.466352@queeg.ludd.luth.se> Cache-Post-Path: queeg.ludd.luth.se!unknown AT speedy DOT ludd DOT luth DOT se X-Cache: nntpcache 2.4.0b5 (see http://www.nntpcache.org/) Date: 06 Jan 2003 14:21:46 GMT Lines: 23 NNTP-Posting-Host: queeg.ludd.luth.se X-Trace: 1041862906 news.luth.se 26542 130.240.16.109 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com Wilfried Hennings wrote: : for compiling a certain program I need support for the snprintf : function. I saw that it isn't yet included in the current djgpp release : but it is included in the development version on cvs. : Can anyone please make a useable, compiled version available to me which : includes snprintf? (only gcc needed, not cpp) : This would spare me downloading and compiling the whole djgpp system : myself. Compile it yourself and then add it to libc.a (with "ar") and add its prototype to the correct header file. If it calls other libc functions not in your libc (vsnprintf()?), repeat for those as well. Alternatively download the experimental djdev204.zip. Right, MartinS