summaryrefslogtreecommitdiff
path: root/src/search/tfind.c
blob: 1b5a6334bb979554466fcc2288e26a1bf2b14ae2 (plain)
1
2
3
4
5
6
7
8
9
10
#include <search.h>

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

/*
XOPEN(4)
*/