remove HAVE_STDARG_H

This commit is contained in:
Julian Orth
2014-03-15 01:54:29 +01:00
committed by Thiago de Arruda
parent 30160c1561
commit 079c47ed7b
6 changed files with 17 additions and 165 deletions

View File

@@ -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);
}