12 lines
289 B
C
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);
|
|
}
|