From 079c47ed7b203b724690b627b2ad5a18f55fa2cd Mon Sep 17 00:00:00 2001 From: Julian Orth Date: Sat, 15 Mar 2014 01:54:29 +0100 Subject: remove HAVE_STDARG_H --- src/misc2.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/misc2.c') diff --git a/src/misc2.c b/src/misc2.c index 30ebb88b66..646e6e7b48 100644 --- a/src/misc2.c +++ b/src/misc2.c @@ -1819,11 +1819,7 @@ int emsg3(char_u *s, char_u *a1, char_u *a2) { if (emsg_not_now()) return TRUE; /* no error messages at the moment */ -#ifdef HAVE_STDARG_H vim_snprintf((char *)IObuff, IOSIZE, (char *)s, a1, a2); -#else - vim_snprintf((char *)IObuff, IOSIZE, (char *)s, (long_u)a1, (long_u)a2); -#endif return emsg(IObuff); } -- cgit