summaryrefslogtreecommitdiff
path: root/src/search/tfind.c
blob: b11e4441d993c2e4917f6ee7297b72d0ddb66c4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#if 0

#include <search.h>

void *tfind(const void * key, void * const * rootp, int (*compar) (const void *, const void *))
{
	return (void*)key;
}

/*
XOPEN(4)
*/


#endif