gno/usr.orca.bin/describe/vaend.c
gdr 5ab0aa962f First beta version of describe v1.0.3 sent out by Soenke on 28 Jan 95.
Main changes include:
	searches are now case insensitive
	Lexicographic order in the database was incorrect; if two
	   keywords matched in the first N chars, the wrong entry
	   may be returned.
	Added a va_end() function since it is used by GNO open(2)
	   and Orca/C v2.0.4b now declares that as a macro.
1996-01-28 17:39:31 +00:00

14 lines
212 B
C

/*
* Work around a change in the ORCA/C libraries: function va_end
* is now __va_end, which breaks some GNO/ME libraries.
*/
#include <stdarg.h>
#undef va_end
void va_end (va_list ap)
{
__va_end (ap);
}