mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-18 02:20:56 -04:00
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);
|
|
}
|