From 6c7b702df1418a0213a253a35c3f629ea6675aaa Mon Sep 17 00:00:00 2001 From: David Lawrence Date: Tue, 14 Nov 2000 23:40:31 +0000 Subject: [PATCH] symbolic constant for the format string of a 64 bit long --- lib/isc/include/isc/print.h | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/lib/isc/include/isc/print.h b/lib/isc/include/isc/print.h index 1c6fb69747..d02715fefe 100644 --- a/lib/isc/include/isc/print.h +++ b/lib/isc/include/isc/print.h @@ -15,7 +15,7 @@ * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: print.h,v 1.10 2000/08/01 01:30:34 tale Exp $ */ +/* $Id: print.h,v 1.11 2000/11/14 23:40:31 tale Exp $ */ #ifndef ISC_PRINT_H #define ISC_PRINT_H 1 @@ -28,6 +28,15 @@ #include #include +/*** + *** Macros + ***/ +#ifdef ISC_PLATFORM_LONGLONGEQUALLONG +#define ISC_PRINT_QUADFORMAT "l" +#else +#define ISC_PRINT_QUADFORMAT "ll" +#endif + /*** *** Functions ***/