Blame src/api/strings.c

nsz f81126
#include <strings.h>
nsz f81126
#define T(t) (t*)0;
nsz f81126
static void f()
nsz f81126
{
nsz f81126
T(size_t)
nsz f81126
T(locale_t)
nsz f81126
#ifdef _XOPEN_SOURCE
nsz f81126
int(*p_ffs)(int) = ffs;
nsz f81126
#endif
nsz f81126
int(*p_strcasecmp)(const char*,const char*) = strcasecmp;
nsz f81126
int(*p_strcasecmp_l)(const char*,const char*,locale_t) = strcasecmp_l;
nsz f81126
int(*p_strncasecmp)(const char*,const char*,size_t) = strncasecmp;
nsz f81126
int(*p_strncasecmp_l)(const char*,const char*,size_t,locale_t) = strncasecmp_l;
nsz f81126
}