From: Alexander Barton Date: Mon, 17 Mar 2003 01:12:10 +0000 (+0000) Subject: Added #include for stdarg.h when using ower own version of vsnprintf(). X-Git-Tag: rel-0-7-0-pre1~39 X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd-alex.git;a=commitdiff_plain;h=f53455977d21d2bb98a7cc0f06006d40715d6812 Added #include for stdarg.h when using ower own version of vsnprintf(). --- diff --git a/src/portab/portab.h b/src/portab/portab.h index b4ccf1fc..c911613c 100644 --- a/src/portab/portab.h +++ b/src/portab/portab.h @@ -8,7 +8,7 @@ * (at your option) any later version. * Please read the file COPYING, README and AUTHORS for more information. * - * $Id: portab.h,v 1.13 2003/03/17 00:53:52 alex Exp $ + * $Id: portab.h,v 1.14 2003/03/17 01:12:10 alex Exp $ * * Portability functions and declarations (header for libngbportab). */ @@ -142,6 +142,7 @@ EXTERN size_t strlcpy PARAMS(( CHAR *dst, CONST CHAR *src, size_t size )); #endif #ifndef HAVE_VSNPRINTF +#include EXTERN INT vsnprintf PARAMS(( CHAR *str, size_t count, CONST CHAR *fmt, va_list args )); #endif