From: Howard Chu Date: Wed, 10 May 2000 16:12:38 +0000 (+0000) Subject: Remove MINGW32 declarations of snprintf and vsnprintf, the new mingw32 X-Git-Tag: LDBM_PRE_GIANT_RWLOCK~3037 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=9842b8fa873cb30059af03245fc8a38c70ef5931;p=openldap Remove MINGW32 declarations of snprintf and vsnprintf, the new mingw32 distributions define them now. --- diff --git a/include/ac/stdarg.h b/include/ac/stdarg.h index b32ee65924..c7b2d46c87 100644 --- a/include/ac/stdarg.h +++ b/include/ac/stdarg.h @@ -21,17 +21,4 @@ # define HAVE_STDARG 1 #endif -/* - * These functions are not included amongst Mingw32 headers for some - * reason even though they are supported in the library - */ - -#if defined(__MINGW32__) && defined(HAVE_SNPRINTF) -LIBC_F (int) snprintf(char *, size_t, const char *, ...); -#endif - -#if defined(__MINGW32__) && defined(HAVE_VSNPRINTF) -LIBC_F (int) vsnprintf(char *, size_t, const char *, va_list); -#endif - #endif /* _AC_STDARG_H */