mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-11-16 06:08:20 +00:00
5ab0aa962f
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.
14 lines
212 B
C
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);
|
|
}
|