Release calc version 2.11.0t8.1

This commit is contained in:
Landon Curt Noll
1999-10-20 17:28:19 -07:00
parent 2c72ea9339
commit 5cc680fe42
16 changed files with 766 additions and 38 deletions

View File

@@ -57,11 +57,13 @@ try_this(char *fmt, ...)
va_list ap;
va_start(ap);
#if !defined(DONT_HAVE_VSPRINTF)
vsprintf(buf, fmt, ap);
#else
sprintf(buf, fmt, ap);
#endif
va_end(ap);
}