From 2ed8dc12cd5ffbbff9cd25e928a720be3596f2af Mon Sep 17 00:00:00 2001 From: Matthias Andree Date: Wed, 10 Nov 2004 19:57:47 +0000 Subject: Clean up the horrible HAVE_[V]SNPRINTF mess, use Trio on systems that lack real snprintf or vsnprintf. svn path=/trunk/; revision=3996 --- fetchmail.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'fetchmail.h') diff --git a/fetchmail.h b/fetchmail.h index afb976d2..9ce7942e 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -22,6 +22,11 @@ #include +/* Import Trio if needed */ +#if !defined(HAVE_SNPRINTF) || !defined(HAVE_VSNPRINTF) +# include "trio/trio.h" +#endif + /* We need this for strstr */ #if !defined(HAVE_STRSTR) && !defined(strstr) char *strstr(const char *, const char *); -- cgit v1.2.3