Fix to declare missing `snprintf` prototype at correct place

Signed-off-by: OBATA Akio <obache@wizdas.com>
pull/99/head
OBATA Akio 4 years ago committed by TDE Gitea
parent 76a04f5fce
commit f65c9e6665

@ -1155,7 +1155,7 @@ __END_DECLS
#if !defined(HAVE_VSNPRINTF_PROTO)
#if !defined(HAVE_VSNPRINTF_PROTO) || !defined(HAVE_SNPRINTF_PROTO)
#if __STDC__
#include <stdarg.h>
#include <stdlib.h>
@ -1165,11 +1165,15 @@ __END_DECLS
#ifdef __cplusplus
extern "C"
#endif
#if !defined(HAVE_VSNPRINTF_PROTO)
int vsnprintf(char *str, size_t n, char const *fmt, va_list ap);
#endif
#if !defined(HAVE_SNPRINTF_PROTO)
int snprintf(char *str, size_t n, char const *fmt, ...);
#endif
#ifdef __cplusplus
extern "C"
#endif
int snprintf(char *str, size_t n, char const *fmt, ...);
#endif

Loading…
Cancel
Save