Date: Sun, 21 Nov 1999 05:48:02 +0100 (CET) From: Nick Hibma <hibma@skylink.it> To: Cynbe ru Taren <cynbe@muq.org> Cc: bde@FreeBSD.org, freebsd-bugs@FreeBSD.org, laurent@off.aspic.com Subject: Re: misc/15002: coredump in sprintf with long long args Message-ID: <Pine.BSF.3.96.991121054615.819A-100000@henny.jrc.it> In-Reply-To: <199911201829.MAA08363@laurel.actlab.utexas.edu>
index | next in thread | previous in thread | raw e-mail
> If anyone can give me an appropriate #if test to
> detect FreeBSD versions prior to 3.2, I will patch
> my source code to automatically use %qd instead of
> %lld when appropriate.
#ifdef __FreeBSD__
printf("%qd\n", bla);
#else
printf("%lld\n", bla);
#endif
Me thinks that q still works in current versions of FBSD
To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-bugs" in the body of the message
home |
help
Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.BSF.3.96.991121054615.819A-100000>
