From 380000357d7e387ccc88338457182ad859a496a9 Mon Sep 17 00:00:00 2001 From: robijn Date: Sun, 14 Jul 2002 20:14:12 +0000 Subject: [PATCH] Stand-in snprintf routines will no longer be used if snprintf function is present in libc. --- shared/snprintf.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/shared/snprintf.c b/shared/snprintf.c index 86f42e9..2fb4411 100644 --- a/shared/snprintf.c +++ b/shared/snprintf.c @@ -184,6 +184,7 @@ * not used; */ +#include "config.h" /* Define HAVE_SNPRINTF if your system already has snprintf and vsnprintf. * @@ -193,6 +194,7 @@ * (and portable_vsnprintf). */ /* #define HAVE_SNPRINTF */ +/* defined from config.h */ /* Define PREFER_PORTABLE_SNPRINTF if your system does have snprintf and * vsnprintf but you would prefer to use the portable routine(s) instead.