netbsd/external/gpl3/gdb/lib/libgdb/common-agent.c
2014-01-15 10:53:42 +01:00

12 lines
289 B
C

#include "common/agent.c"
/* XXX
* Gdb wants to use its internal fnmatch that does wide characters overriding
* the one from libiberty. This is madness, let's use ours!
*/
int
gnu_fnmatch(const char *pattern, const char *string, int flags)
{
return fnmatch(pattern, string, flags);
}